From 5df8963e87e8a1957abcf4fc1c4413654d6c84b6 Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Mon, 31 Jul 2023 18:49:31 +0300 Subject: [PATCH] Include additional performance improvements --- docs/_posts/2023-07-28-luau-recap-july-2023.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/_posts/2023-07-28-luau-recap-july-2023.md b/docs/_posts/2023-07-28-luau-recap-july-2023.md index 037dbfde..2c6804df 100644 --- a/docs/_posts/2023-07-28-luau-recap-july-2023.md +++ b/docs/_posts/2023-07-28-luau-recap-july-2023.md @@ -49,6 +49,8 @@ Out-of-memory exception handling has been improved. Other runtime improvements we've made: * Performance of `table.sort` was improved further. It now guarantees N*log(N) time complexity in the worst case +* Performance of `table.concat` was improved by ~5-7% +* Performance of `math.noise` was improved by ~30% * Inlining of functions is now possible even when they used to compute their own arguments ## Autocomplete improvements