11 releases (1 stable)

Uses old Rust 2015

1.0.0 Oct 21, 2017
0.6.0 Sep 2, 2017
0.5.0 Aug 27, 2017
0.3.2 Jan 20, 2017
0.2.1 Mar 28, 2016

#967 in Algorithms

Download history 475/week @ 2023-11-29 142/week @ 2023-12-06 232/week @ 2023-12-13 316/week @ 2023-12-20 180/week @ 2023-12-27 268/week @ 2024-01-03 362/week @ 2024-01-10 228/week @ 2024-01-17 243/week @ 2024-01-24 230/week @ 2024-01-31 295/week @ 2024-02-07 263/week @ 2024-02-14 356/week @ 2024-02-21 261/week @ 2024-02-28 278/week @ 2024-03-06 302/week @ 2024-03-13

1,259 downloads per month
Used in 11 crates (8 directly)

MIT license

18KB
217 lines

bidir-map-rs TravisCI build status AppVeyorCI build status Licence

Bidirectional maps for Rust

Docs


lib.rs:

Bidirectional maps for Rust.

Examples

use bidir_map::{BidirMap, ByFirst, BySecond};
use std::default::Default;

let mut map = BidirMap::new();
assert_eq!(map, Default::default());

map.insert(1, "a");

assert_eq!(map.get_by_first(&1), Some(&"a"));
assert_eq!(map.get_by_first(&2), None);
assert_eq!(map.get_by_second(&"a"), Some(&1));
assert_eq!(map.get_by_second(&"b"), None);

assert_eq!(map[ByFirst(&1)], "a");
assert_eq!(map[BySecond(&"a")], 1);
// These would panic:
//   map[ByFirst(&2)];
//   map[BySecond(&"b")];

No runtime deps