@@ -510,7 +510,7 @@ where
510
510
N
511
511
}
512
512
513
- /// Return an iterator over the keys of the map, in their order
513
+ /// Return an iterator over the keys of the map, in insertion order
514
514
///
515
515
/// ```
516
516
/// use heapless::FnvIndexMap;
@@ -528,7 +528,7 @@ where
528
528
self . core . entries . iter ( ) . map ( |bucket| & bucket. key )
529
529
}
530
530
531
- /// Return an iterator over the values of the map, in their order
531
+ /// Return an iterator over the values of the map, in insertion order
532
532
///
533
533
/// ```
534
534
/// use heapless::FnvIndexMap;
@@ -546,7 +546,7 @@ where
546
546
self . core . entries . iter ( ) . map ( |bucket| & bucket. value )
547
547
}
548
548
549
- /// Return an iterator over mutable references to the the values of the map, in their order
549
+ /// Return an iterator over mutable references to the the values of the map, in insertion order
550
550
///
551
551
/// ```
552
552
/// use heapless::FnvIndexMap;
@@ -568,7 +568,7 @@ where
568
568
self . core . entries . iter_mut ( ) . map ( |bucket| & mut bucket. value )
569
569
}
570
570
571
- /// Return an iterator over the key-value pairs of the map, in their order
571
+ /// Return an iterator over the key-value pairs of the map, in insertion order
572
572
///
573
573
/// ```
574
574
/// use heapless::FnvIndexMap;
@@ -588,7 +588,7 @@ where
588
588
}
589
589
}
590
590
591
- /// Return an iterator over the key-value pairs of the map, in their order
591
+ /// Return an iterator over the key-value pairs of the map, in insertion order
592
592
///
593
593
/// ```
594
594
/// use heapless::FnvIndexMap;
0 commit comments