File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -987,6 +987,9 @@ pub trait Itertools : Iterator {
987
987
/// Clones of visited elements are stored in a hash set in the
988
988
/// iterator.
989
989
///
990
+ /// The iterator is stable, returning the non-duplicate items in the order
991
+ /// in which they occur in the adapted iterator.
992
+ ///
990
993
/// ```
991
994
/// use itertools::Itertools;
992
995
///
@@ -1009,6 +1012,9 @@ pub trait Itertools : Iterator {
1009
1012
/// with the keying function `f` by hash and equality.
1010
1013
/// The keys are stored in a hash set in the iterator.
1011
1014
///
1015
+ /// The iterator is stable, returning the non-duplicate items in the order
1016
+ /// in which they occur in the adapted iterator.
1017
+ ///
1012
1018
/// ```
1013
1019
/// use itertools::Itertools;
1014
1020
///
You can’t perform that action at this time.
0 commit comments