X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Futil%2Findexed_map.rs;h=bb17d3450ee5ccb7193ebecd00583603071ba435;hb=620244dc2ec3153a61e009b80a8c59cf41514482;hp=2b5bbac0ddc583e188a9b36b2833cbb42bb74eea;hpb=48fa2fd17295bcada25a3ee3f2c6f88d273484ac;p=rust-lightning diff --git a/lightning/src/util/indexed_map.rs b/lightning/src/util/indexed_map.rs index 2b5bbac0..bb17d345 100644 --- a/lightning/src/util/indexed_map.rs +++ b/lightning/src/util/indexed_map.rs @@ -21,7 +21,7 @@ use core::ops::{Bound, RangeBounds}; /// actually backed by a [`HashMap`], with some additional tracking to ensure we can iterate over /// keys in the order defined by [`Ord`]. /// -/// (C-not exported) as bindings provide alternate accessors rather than exposing maps directly. +/// This is not exported to bindings users as bindings provide alternate accessors rather than exposing maps directly. /// /// [`BTreeMap`]: alloc::collections::BTreeMap #[derive(Clone, Debug, Eq)] @@ -150,7 +150,7 @@ impl PartialEq for IndexedMap { /// An iterator over a range of values in an [`IndexedMap`] /// -/// (C-not exported) as bindings provide alternate accessors rather than exposing maps directly. +/// This is not exported to bindings users as bindings provide alternate accessors rather than exposing maps directly. pub struct Range<'a, K: Hash + Ord, V> { inner_range: Iter<'a, K>, map: &'a HashMap, @@ -166,7 +166,7 @@ impl<'a, K: Hash + Ord, V: 'a> Iterator for Range<'a, K, V> { /// An [`Entry`] for a key which currently has no value /// -/// (C-not exported) as bindings provide alternate accessors rather than exposing maps directly. +/// This is not exported to bindings users as bindings provide alternate accessors rather than exposing maps directly. pub struct VacantEntry<'a, K: Hash + Ord, V> { #[cfg(feature = "hashbrown")] underlying_entry: hash_map::VacantEntry<'a, K, V, hash_map::DefaultHashBuilder>, @@ -178,7 +178,7 @@ pub struct VacantEntry<'a, K: Hash + Ord, V> { /// An [`Entry`] for an existing key-value pair /// -/// (C-not exported) as bindings provide alternate accessors rather than exposing maps directly. +/// This is not exported to bindings users as bindings provide alternate accessors rather than exposing maps directly. pub struct OccupiedEntry<'a, K: Hash + Ord, V> { #[cfg(feature = "hashbrown")] underlying_entry: hash_map::OccupiedEntry<'a, K, V, hash_map::DefaultHashBuilder>, @@ -190,7 +190,7 @@ pub struct OccupiedEntry<'a, K: Hash + Ord, V> { /// A mutable reference to a position in the map. This can be used to reference, add, or update the /// value at a fixed key. /// -/// (C-not exported) as bindings provide alternate accessors rather than exposing maps directly. +/// This is not exported to bindings users as bindings provide alternate accessors rather than exposing maps directly. pub enum Entry<'a, K: Hash + Ord, V> { /// A mutable reference to a position within the map where there is no value. Vacant(VacantEntry<'a, K, V>),