Sha256: f6dbeeb0e2950402b0e66ac52bf74c9e4197d3c5d9c0dde64a7998a2ef74d327

Contents?: true

Size: 483 Bytes

Versions: 43

Compression:

Stored size: 483 Bytes

Contents

use indexmap::{indexmap, indexset};

#[test]
fn test_sort() {
    let m = indexmap! {
        1 => 2,
        7 => 1,
        2 => 2,
        3 => 3,
    };

    itertools::assert_equal(
        m.sorted_by(|_k1, v1, _k2, v2| v1.cmp(v2)),
        vec![(7, 1), (1, 2), (2, 2), (3, 3)],
    );
}

#[test]
fn test_sort_set() {
    let s = indexset! {
        1,
        7,
        2,
        3,
    };

    itertools::assert_equal(s.sorted_by(|v1, v2| v1.cmp(v2)), vec![1, 2, 3, 7]);
}

Version data entries

43 entries across 38 versions & 1 rubygems

Version Path
wasmtime-14.0.3 ./ext/cargo-vendor/indexmap-2.0.2/tests/tests.rs
wasmtime-14.0.1 ./ext/cargo-vendor/indexmap-2.0.2/tests/tests.rs
wasmtime-14.0.0 ./ext/cargo-vendor/indexmap-2.0.2/tests/tests.rs
wasmtime-13.0.0 ./ext/cargo-vendor/indexmap-2.0.0/tests/tests.rs
wasmtime-12.0.1 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-12.0.1 ./ext/cargo-vendor/indexmap-2.0.0/tests/tests.rs
wasmtime-12.0.0 ./ext/cargo-vendor/indexmap-2.0.0/tests/tests.rs
wasmtime-12.0.0 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-11.0.0 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-11.0.0 ./ext/cargo-vendor/indexmap-2.0.0/tests/tests.rs
wasmtime-10.0.1 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-10.0.1 ./ext/cargo-vendor/indexmap-2.0.0/tests/tests.rs
wasmtime-10.0.0 ./ext/cargo-vendor/indexmap-2.0.0/tests/tests.rs
wasmtime-10.0.0 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-9.0.4 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-9.0.1 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-8.0.0 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-7.0.0 ./ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs
wasmtime-6.0.1 ./ext/cargo-vendor/indexmap-1.9.2/tests/tests.rs
wasmtime-6.0.0 ./ext/cargo-vendor/indexmap-1.9.2/tests/tests.rs