5个版本

新增 0.2.0 2024年8月19日
0.1.3 2024年8月19日
0.1.2 2024年2月16日
0.1.1 2024年2月16日
0.1.0 2024年2月16日

593数据结构 中排名

Download history 94/week @ 2024-08-13

每月98次下载

MIT/Apache

13KB
198

ord-collections

Status Crates.io Documentation Dependency status

示例

OrdVec

use ord_collections:: {Error,OrdVec};

let mut index: OrdVec<u64> = OrdVec::default();

// insert `1`, `2`, `3` in wrong order
assert!(index.insert(1).is_ok());
assert!(index.insert(3).is_ok());
assert!(index.insert(2).is_ok());

// check that we cannot push `1` again
assert!(matches!(
    index.insert(1),
    Err(Error::Duplicate(_))
));

// check that iteration is in expected order
let mut sorted = String::new();
for i in index.iter() {
    sorted += &i.to_string()
}
assert_eq!(sorted, "123");

assert!(index.insert(1).is_err());

OrdMap

use ord_collections::{OrdMap,Indexed,Error};

let mut index: OrdMap<char, u64> = OrdMap::default();

// insert `A`, `B`, `C` in wrong order
assert!(index.insert(Indexed::new('C', 0)).is_ok());
assert!(index.insert(Indexed::new('A', 0)).is_ok());
assert!(index.insert(Indexed::new('B', 0)).is_ok());

// check that we cannot insert `A` again
assert!(matches!(
    index.insert(Indexed::new('A', 0)),
    Err(Error::Duplicate(_))
));

check that iteration is in expected order
let mut sorted = String::new();
for i in index.iter() {
    sorted += &i.index().to_string()
}
assert_eq!(sorted, "ABC");

assert!(index.insert(Indexed::new('A', 1)).is_err());

依赖

~115KB