[algo] Add sign() function

This commit is contained in:
Lorenzo Cogotti 2023-11-01 11:21:02 +01:00
parent 08ac115ea2
commit 34221bf850
1 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,12 @@ local algo = {}
-- @treturn number clamped value.
function algo.clamp(x, a, b) return min(max(x, a), b) end
--- Sign function.
--
-- @number x value whose sign should be returned.
-- @treturn number sign of x, -1 if negative, 1 if positive, 0 otherwise.
function algo.sign(x) return x > 0 and 1 or x < 0 and -1 or 0 end
--- Fast remove from array.
--
-- Replace 'array[i]' with last array's element and