Limit Clamping provides a simple approach for limiting a dynamic value (variable) to not go below a desired value nor above the deisred value. If dynamic value goes below Minimum value then the Minimum value is returned. If dynamic value goes above Maximum value, then the maximum value is returned....
More information
List Pushing allows the use of 'Pushing' for any kind or type of list.
The Act Of Pushing-- Moving all values inside of list from bottom (end index) to top (beginning index 0)
then overwriting the last index position with the desired item.
DataTypes_Extra is full of methods used to get many kinds of results. (methods listed below)
to use: using DataTypes_Extra.Calculations; then calling the static methods within the Evaluate Class (Evaluate.'method()').
This libarary include some extension methods that can only be scoped to from...
More information