Struct cl_interpret::builtin::lt_eq
source · pub struct lt_eq;
Expand description
Tests whether a <= b
ⓘ
builtin! fn lt_eq (lhs, rhs) -> IResult<ConValue> { cmp!(lhs, rhs, true, <=) }
Trait Implementations§
source§impl Callable for lt_eq
impl Callable for lt_eq
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_eq
impl RefUnwindSafe for lt_eq
impl Send for lt_eq
impl Sync for lt_eq
impl Unpin for lt_eq
impl UnwindSafe for lt_eq
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