Enum ndarray::FoldWhile[][src]

pub enum FoldWhile<T> {
    Continue(T),
    Done(T),
}
Expand description

Value controlling the execution of .fold_while on Zip.

Variants

Continue(T)

Continue folding with this value

Done(T)

Fold is complete and will return this value

Implementations

Return the inner value

Return true if it is Done, false if Continue

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.