Trait core::iter::Product 1.12.0[−][src]
This is supported on non-crate feature
miri-test-libstd or test or doctest only.Expand description
Trait to represent types that can be created by multiplying elements of an iterator.
This trait is used to implement Iterator::product(). Types which implement
this trait can be generated by using the product() method on an iterator.
Like FromIterator, this trait should rarely be called directly.