Enum ndarray::FoldWhile [] [src]

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

Value controlling the execution of .fold_while on Zip.

Variants

Continue folding with this value

Fold is complete and will return this value

Methods

impl<T> FoldWhile<T>
[src]

[src]

Return the inner value

[src]

Return true if it is Done, false if Continue