# Functions
CeilF2I - Round the given floating point number to the nearest larger integer and return that as an integer.
CeilI - Returns the `value` given unless it's greater than `max`, in which case it returns `max`.
ClampF - Returns the `value` given unless it's smaller than `min` or greater than `max`.
ClampI - Returns the `value` given unless it's smaller than `min` or greater than `max`.
DistInts - Distribute the value of max across the values of the given input.
Distribute - Another variation on distributing space between things.
EqInts - Compare two integer arrays and if both are the same, returns true and false otherwise.
FloorI - Returns the `value` given unless it's less than `min`, in which case it returns `min`.
No description provided by the author
No description provided by the author
SolveSpaceAlloc - Resolve the issue of computing the gaps between things.
SumInts - Add the given list of integers up and return the result.