ArgsIter

Trait ArgsIter 

Source
pub trait ArgsIter<'a>: Iterator<Item = ArgsItem<'a, Self::TreeIter>> {
    type TreeIter: TreeIter<'a, ArgsIter = Self>;
}
Expand description

Iterator over the arguments of a function.

Required Associated Types§

Source

type TreeIter: TreeIter<'a, ArgsIter = Self>

Tree iterator associated to this iterator.

Implementors§