Struct cl_interpret::builtin::lt
source · pub struct lt;
Expand description
Tests whether a < b
ⓘ
builtin! fn lt (lhs, rhs) -> IResult<ConValue> { cmp!(lhs, rhs, false, <) }
Trait Implementations§
source§impl Callable for lt
impl Callable for lt
source§fn call(&self, env: &mut Environment, args: &[ConValue]) -> IResult<ConValue>
fn call(&self, env: &mut Environment, args: &[ConValue]) -> IResult<ConValue>
Calls this Callable in the provided Environment, with ConValue args
The Callable is responsible for checking the argument count and validating types
The Callable is responsible for checking the argument count and validating types
Auto Trait Implementations§
impl Freeze for lt
impl RefUnwindSafe for lt
impl Send for lt
impl Sync for lt
impl Unpin for lt
impl UnwindSafe for lt
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more