ltef
function ltef( val ) --> func
Description
Creates a function that takes one parameter and compares it with val via the ⇐ operator.
Parameters
- val
-
The basic value for the comparsion.
Return Values
- func
-
A new function that takes one parameter and returns true or false.
Code
--ZFUNC-ltef-v1 local function ltef( val ) --> func return function ( oth ) return oth <= val end end return ltef
Examples
local t = require( "taptest" ) local ltef = require( "ltef" ) func = ltef( 2 ) t( func( 3 ), false ) t( func( 2 ), true ) t( func( 1 ), true ) t()