pub struct ExprList {
pub keys: Vec<Option<String>>,
pub values: Vec<Expr>,
}
Fields§
§keys: Vec<Option<String>>
§values: Vec<Expr>
Implementations§
source§impl ExprList
impl ExprList
pub fn new() -> ExprList
pub fn get_named(&self, key: &String) -> Option<Expr>
pub fn get(&self, index: usize) -> Option<Expr>
pub fn pop(&mut self) -> Option<(Option<String>, Expr)>
pub fn push(&mut self, pair: (Option<String>, Expr))
pub fn append(&mut self, other: Self) -> &mut ExprList
pub fn position_ellipsis(&self) -> Option<usize>
pub fn pop_trailing(&mut self) -> ExprList
pub fn remove_named(&mut self, key: &str) -> Option<(Option<String>, Expr)>
pub fn remove(&mut self, index: usize) -> Option<(Option<String>, Expr)>
pub fn insert_named(&mut self, key: String, value: Expr) -> usize
pub fn insert(&mut self, index: usize, value: Expr) -> usize
pub fn binary_args(self) -> ((Option<String>, Expr), (Option<String>, Expr))
pub fn unnamed_binary_args(self) -> (Expr, Expr)
pub fn unnamed_unary_arg(self) -> Expr
sourcepub fn as_formals(self) -> ExprList
pub fn as_formals(self) -> ExprList
Converts unnamed value symbols into missing named parameters
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
Trait Implementations§
source§impl FromIterator<Expr> for ExprList
impl FromIterator<Expr> for ExprList
source§impl<'a> IntoIterator for &'a mut ExprList
impl<'a> IntoIterator for &'a mut ExprList
source§impl IntoIterator for ExprList
impl IntoIterator for ExprList
impl StructuralPartialEq for ExprList
Auto Trait Implementations§
impl Freeze for ExprList
impl !RefUnwindSafe for ExprList
impl Send for ExprList
impl Sync for ExprList
impl Unpin for ExprList
impl !UnwindSafe for ExprList
Blanket Implementations§
source§impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
impl<T> AsDynCompare for Twhere
T: Any + DynCompare,
fn as_any(&self) -> &(dyn Any + 'static)
fn as_dyn_compare(&self) -> &(dyn DynCompare + 'static)
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> DynCompare for T
impl<T> DynCompare for T
fn dyn_eq(&self, other: &(dyn DynCompare + 'static)) -> bool
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more