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-29.0.0 ./ext/cargo-vendor/indexmap-2.7.1/tests/tests.rs
wasmtime-28.0.0 ./ext/cargo-vendor/indexmap-2.7.0/tests/tests.rs
wasmtime-27.0.0 ./ext/cargo-vendor/indexmap-2.6.0/tests/tests.rs
wasmtime-26.0.0 ./ext/cargo-vendor/indexmap-2.6.0/tests/tests.rs
wasmtime-25.0.2 ./ext/cargo-vendor/indexmap-2.4.0/tests/tests.rs
wasmtime-25.0.1 ./ext/cargo-vendor/indexmap-2.4.0/tests/tests.rs
wasmtime-25.0.0 ./ext/cargo-vendor/indexmap-2.4.0/tests/tests.rs
wasmtime-24.0.0 ./ext/cargo-vendor/indexmap-2.4.0/tests/tests.rs
wasmtime-23.0.2 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-22.0.0 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-21.0.1 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-20.0.2 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-20.0.0 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-18.0.3 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-17.0.1 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-17.0.0 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-16.0.0 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-15.0.1 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-15.0.0 ./ext/cargo-vendor/indexmap-2.1.0/tests/tests.rs
wasmtime-14.0.4 ./ext/cargo-vendor/indexmap-2.0.2/tests/tests.rs