Home
last modified time | relevance | path

Searched refs:shift_remove_index (Results 1 – 3 of 3) sorted by relevance

/external/rust/android-crates-io/crates/indexmap/src/map/
Dcore.rs272 pub(crate) fn shift_remove_index(&mut self, index: usize) -> Option<(K, V)> { in shift_remove_index() method
/external/rust/android-crates-io/crates/indexmap/src/
Dmap.rs844 pub fn shift_remove_index(&mut self, index: usize) -> Option<(K, V)> { in shift_remove_index() method
845 self.core.shift_remove_index(index) in shift_remove_index()
Dset.rs699 pub fn shift_remove_index(&mut self, index: usize) -> Option<T> { in shift_remove_index() method
700 self.map.shift_remove_index(index).map(|(x, ())| x) in shift_remove_index()