Documentation Index
Fetch the complete documentation index at: https://mintlify.com/tinrab/temelj/llms.txt
Use this file to discover all available pages before exploring further.
Types
NumericRange
A numeric range consisting of individual numbers and range bounds.An array of numbers and/or range bounds
NumericRangePart
Either a single number or a range bound
NumericRangeBound
Represents a numeric range bound with start and end values.The starting value of the range
The ending value of the range (inclusive)
parseNumericRange
Parses a string representation of a numeric range into a NumericRange array.The string to parse (e.g., “1,3,5..10,15..=20”)
A parsed numeric range
Throws if the input string contains invalid integers or ranges
Example
numericRangeToString
Converts a numeric range to a string representation.The range to convert
The string representation of the numeric range
Example
flattenNumericRange
Flattens a numeric range to a number array.The range to flatten
A flattened array of all numbers in the range
Example
reverseNumericRange
Reverses a numeric range.The range to reverse
A reversed range
Example
numericRangeContains
Checks if a numeric range contains a specified value.The numeric range to check
The value to check for in the range
True if the value is contained in the range, false otherwise
Example
isNumericRangeIncreasing
Checks whether a range is strictly increasing.The range to check
True if the range is increasing, false otherwise
Example
isNumericRangeDecreasing
Checks whether a range is strictly decreasing.The range to check
True if the range is decreasing, false otherwise
NumericRangeIterator
An iterator that iterates over a numeric range.Constructor
The numeric range to iterate over
Example
range
A simple programmatic generator for numeric ranges.The starting number (inclusive)
The ending number (exclusive)
The step size
A generator that yields numbers from start to end
Throws an error if step is zero