Enum avalog::Expr

source ·
pub enum Expr<T: Symbol = Arc<String>> {
Show 18 variants Sym(T), Var(Arc<String>), Rel(Box<Expr<T>>, Box<Expr<T>>), Ava(Box<Expr<T>>, Box<Expr<T>>), Inner(Box<Expr<T>>), UniqAva(Box<Expr<T>>), RoleOf(Box<Expr<T>>, Box<Expr<T>>), Eq(Box<Expr<T>>, Box<Expr<T>>), Neq(Box<Expr<T>>, Box<Expr<T>>), Has(Box<Expr<T>>, Box<Expr<T>>), App(Box<Expr<T>>, Box<Expr<T>>), AmbiguousRole(Box<Expr<T>>, Box<Expr<T>>, Box<Expr<T>>), AmbiguousRel(Box<Expr<T>>, Box<Expr<T>>, Box<Expr<T>>), Rule(Box<Expr<T>>, Vec<Expr<T>>), Ambiguity(bool), Tail, TailVar(Arc<String>), List(Vec<Expr<T>>),
}
Expand description

Represents an expression.

Variants§

§

Sym(T)

A symbol.

§

Var(Arc<String>)

A variable.

§

Rel(Box<Expr<T>>, Box<Expr<T>>)

A relation between two symbols.

§

Ava(Box<Expr<T>>, Box<Expr<T>>)

A 1-avatar of some expression.

§

Inner(Box<Expr<T>>)

Unwraps 1-avatar.

§

UniqAva(Box<Expr<T>>)

A 1-avatar q'(b) such that p(a) = q'(b).

§

RoleOf(Box<Expr<T>>, Box<Expr<T>>)

A role of expression.

§

Eq(Box<Expr<T>>, Box<Expr<T>>)

An equality, e.g. p(a) = b.

§

Neq(Box<Expr<T>>, Box<Expr<T>>)

An inequality, e.g. X != a.

§

Has(Box<Expr<T>>, Box<Expr<T>>)

A set membership relation, e.g. p(a) ∋ b.

§

App(Box<Expr<T>>, Box<Expr<T>>)

Apply an argument to a role, e.g. p(a).

§

AmbiguousRole(Box<Expr<T>>, Box<Expr<T>>, Box<Expr<T>>)

There is an ambiguous role.

§

AmbiguousRel(Box<Expr<T>>, Box<Expr<T>>, Box<Expr<T>>)

There is an ambiguous relation.

§

Rule(Box<Expr<T>>, Vec<Expr<T>>)

Defines a rule.

§

Ambiguity(bool)

Ambiguity summary.

This is true when some ambiguity is found, and false when no ambiguity is found.

§

Tail

Represents the tail of an argument list ...

§

TailVar(Arc<String>)

Represents the tail of an argument list bound a symbol ..x.

§

List(Vec<Expr<T>>)

Represents a list.

Implementations§

source§

impl<T: Symbol> Expr<T>

source

pub fn eval_lift(&self, eval: &T, top: bool) -> Expr<T>

Lifts apply with an eval role.

source

pub fn is_const(&self) -> bool

Returns true if expression contains no variables.

source

pub fn is_tail(&self) -> bool

Returns true if expression is a tail pattern.

source

pub fn arity(&self) -> usize

Returns the number of arguments in apply expression.

Trait Implementations§

source§

impl<T: Clone + Symbol> Clone for Expr<T>

source§

fn clone(&self) -> Expr<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + Symbol> Debug for Expr<T>

source§

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

Formats the value using the given formatter. Read more
source§

impl<T: Symbol> Display for Expr<T>

source§

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

Formats the value using the given formatter. Read more
source§

impl<T: Hash + Symbol> Hash for Expr<T>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T: Ord + Symbol> Ord for Expr<T>

source§

fn cmp(&self, other: &Expr<T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<T: PartialEq + Symbol> PartialEq for Expr<T>

source§

fn eq(&self, other: &Expr<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: PartialOrd + Symbol> PartialOrd for Expr<T>

source§

fn partial_cmp(&self, other: &Expr<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T: Eq + Symbol> Eq for Expr<T>

source§

impl<T: Symbol> StructuralPartialEq for Expr<T>

Auto Trait Implementations§

§

impl<T> Freeze for Expr<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Expr<T>
where T: RefUnwindSafe,

§

impl<T> Send for Expr<T>
where T: Send,

§

impl<T> Sync for Expr<T>
where T: Sync,

§

impl<T> Unpin for Expr<T>
where T: Unpin,

§

impl<T> UnwindSafe for Expr<T>
where T: UnwindSafe,

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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>,

§

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.