AVal

Enum AVal 

Source
pub enum AVal {
Show 18 variants None, Err(Box<AVal>, String), Bol(bool), Sym(String), Str(String), Byt(Vec<u8>), Int(i64), Flt(f64), Lst(Vec<AVal>), Opt(Option<Box<AVal>>), FVec(NVec<f64>), IVec(NVec<i64>), Pair(Box<(AVal, AVal)>), Map(FnvHashMap<String, AVal>), Chan(AValChannel), Slot(AtomicAValSlot), Atom(AtomicAVal), Usr(Box<dyn ThreadSafeUsr>),
}
Expand description

AVal is a copy-by-value structure for storing the most important data of VVals inside an atomic container (AtomicAVal).

You can create an AVal from a VVal like this:

use wlambda::*;

let av = {
    let v = VVal::vec();
    v.push(VVal::Int(1));
    v.push(VVal::Int(2));
    v.push(VVal::Int(3));

    AVal::from_vval(&v)
};

/// You get back the VVal like this:

assert_eq!(av.to_vval().s(), "$[1,2,3]");

And get back the VVal like this:

Variants§

Implementations§

Source§

impl AVal

Source

pub fn set_at_path(&mut self, path_idx: usize, pth: &VVal, av: AVal)

Takes a path of indices and the start index of that path, and sets the addressed slot to the given AVal. This is used by std:sync:atom:write_at.

Source

pub fn to_vval(&self) -> VVal

Converts the AVal back to a VVal.

use wlambda::*;
assert_eq!(AVal::Sym(String::from("x")).to_vval().s(), ":x");
Source

pub fn from_vval(v: &VVal) -> Self

Converts a VVal to an AVal.

use wlambda::*;

let av = AVal::from_vval(&VVal::new_sym("x"));
if let AVal::Sym(s) = av {
    assert_eq!(s, "x");
} else {
    assert!(false);
}

Trait Implementations§

Source§

impl Debug for AVal

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for AVal

§

impl !RefUnwindSafe for AVal

§

impl Send for AVal

§

impl Sync for AVal

§

impl Unpin for AVal

§

impl !UnwindSafe for AVal

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.