Functionsยง
- chain
- Shorthand for
a.into_iter().chain(b)
. - cmp
- Shorthand for
a.into_iter().cmp(b)
. - eq
- Shorthand for
a.into_iter().eq(b)
. - ge
- Shorthand for
a.into_iter().ge(b)
. - gt
- Shorthand for
a.into_iter().gt(b)
. - le
- Shorthand for
a.into_iter().le(b)
. - lt
- Shorthand for
a.into_iter().lt(b)
. - ne
- Shorthand for
a.into_iter().ne(b)
. - partial_
cmp - Shorthand for
a.into_iter().partial_cmp(b)
. - zip
- Converts the arguments to iterators and zips them.