astd 0.0.1

A drop-in replacement for std in no-std environments, with full abseil backend.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[test]
fn seq_compare() {
    assert!("hello".to_string() < "hellr".to_string());
    assert!("hello ".to_string() > "hello".to_string());
    assert!("hello".to_string() != "there".to_string());
    assert!(vec![1, 2, 3, 4] > vec![1, 2, 3]);
    assert!(vec![1, 2, 3] < vec![1, 2, 3, 4]);
    assert!(vec![1, 2, 4, 4] > vec![1, 2, 3, 4]);
    assert!(vec![1, 2, 3, 4] < vec![1, 2, 4, 4]);
    assert!(vec![1, 2, 3] <= vec![1, 2, 3]);
    assert!(vec![1, 2, 3] <= vec![1, 2, 3, 3]);
    assert!(vec![1, 2, 3, 4] > vec![1, 2, 3]);
    assert_eq!(vec![1, 2, 3], vec![1, 2, 3]);
    assert!(vec![1, 2, 3] != vec![1, 1, 3]);
}