array_map

Crates.ioarray_map
lib.rsarray_map
version0.4.0
sourcesrc
created_at2021-05-19 19:23:50.899408
updated_at2022-03-24 21:37:07.046174
descriptionMap backed array for fixed size keys with O(1) performance
homepage
repositoryhttps://github.com/tylerhawkes/array_map
max_upload_size
id399711
size60,651
Tyler Hawkes (tylerhawkes)

documentation

https://docs.rs/array_map

README

array_map

no_std compatible Map and Set backed by arrays.

This crate will evolve as more const-generic features become available.

This is especially useful if you have a bare enum where you want to treat each key as a field

use array_map::*;
#[repr(u8)]
#[derive(Indexable)]
enum DetectionType {
  Person,
  Vehicle,
  Bicycle,
}
let thresholds = ArrayMap::<DetectionType, f32, {DetectionType::count()}>::from_closure(|dt| match dt {
    DetectionType::Person => 0.8,
    DetectionType::Vehicle => 0.9,
    DetectionType::Bicycle => 0.7,
  });
let person_threshold = thresholds[DetectionType::Person];

This can also be used to memoize some common computations. (this is 2x as fast as doing the computation on aarch64)

use array_map::*;
let u8_to_f32_cache = ArrayMap::<u8, f32, {u8::SIZE}>::from_closure(|u|f32::from(*u) / 255.0);
let bytes = vec![0_u8; 1024];
// take some bytes and convert them to f32
let floats = bytes.iter().copied().map(|b|u8_to_f32_cache[b]).collect::<Vec<_>>();
Commit count: 11

cargo fmt