Struct redfa::derivatives::Derivatives [] [src]

pub struct Derivatives<T, R> {
    pub d: Vec<(Vec<T>, R)>,
    pub rest: R,
}

The set of some object's derivatives with respect to an alphabet T.

Fields

Holds a set of pairs (chars, derivative), meaning that the derivative with respect to any element of chars is derivative.

The derivative with respect to any character not listed in d.

Methods

impl<T, R> Derivatives<T, R>
[src]

Trait Implementations

impl<T: Debug, R: Debug> Debug for Derivatives<T, R>
[src]

Formats the value using the given formatter.

impl<T: Clone, R: Clone> Clone for Derivatives<T, R>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more