[][src]Struct terms::Term

pub struct Term<F> { /* fields omitted */ }

A term.

Subterms are reference counter using [std::rc::Arc].

Methods

impl<F> Term<F>[src]

pub fn new(f: F, subs: Vec<Self>) -> Self where
    F: Clone
[src]

pub fn from_slice(f: F, subs: &[Self]) -> Self where
    F: Clone
[src]

pub fn symbol(&self) -> &F[src]

pub fn sub_terms(&self) -> &Vec<Self>[src]

pub fn depth(&self) -> u64[src]

pub fn random(alphabet: &[F], max_depth: u64) -> Term<F> where
    F: Clone + Ranked
[src]

Generate a random term with the given alphabet. The alphabet must contain at least one constant (of arity 0), otherwise it will panic.

Trait Implementations

impl<F, X> PatternLike<F, X> for Term<F>[src]

impl<F: Ord> Ord for Term<F>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<F: Ord> PartialOrd<Term<F>> for Term<F>[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

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

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

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

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

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

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

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

impl<F: PartialEq> PartialEq<Term<F>> for Term<F>[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<F: Clone> Clone for Term<F>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<F: PartialEq + Eq> Eq for Term<F>[src]

impl<F: Display> Display for Term<F>[src]

impl<F: Debug> Debug for Term<F>[src]

impl<F: Hash> Hash for Term<F>[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<F> Send for Term<F> where
    F: Send + Sync

impl<F> Unpin for Term<F> where
    F: Unpin

impl<F> Sync for Term<F> where
    F: Send + Sync

impl<F> UnwindSafe for Term<F> where
    F: RefUnwindSafe + UnwindSafe

impl<F> RefUnwindSafe for Term<F> where
    F: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,