pub enum ListPrimitive {
Assq,
Cons,
Memq,
Tail,
Length,
}Expand description
A list primitive.
Variants§
Assq
An assq procedure.
Cons
A cons procedure.
Memq
A memq procedure.
Tail
A list-tail procedure.
Length
A length procedure.
Auto Trait Implementations§
impl Freeze for ListPrimitive
impl RefUnwindSafe for ListPrimitive
impl Send for ListPrimitive
impl Sync for ListPrimitive
impl Unpin for ListPrimitive
impl UnwindSafe for ListPrimitive
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