pub unsafe extern "C" fn lessthan(
state: lua_State,
index1: i32,
index2: i32,
) -> bool
Expand description
Returns true
if the value at acceptable index index1
is smaller than the value at acceptable index index2
, following the semantics of the Lua <
operator (that is, may call metamethods).
Otherwise returns false
. Also returns 0 if any of the indices is non valid.