- lte<T extends number>(a: OperationIO<T>, b: OperationIO<T>): boolean
Parameters
- a: OperationIO<T>
- b: OperationIO<T>
Returns boolean
a <= b
- lte<T extends number>(b: OperationIO<T>): (a: OperationIO<T>) => boolean
Returns (a: OperationIO<T>) => boolean
(a) => a <= b
Less Than or Equal: Compare if the first value is less than or equal to the second.