Expand description

Latest Release pipeline status coverage report

Description

Attribute macros for const array.

Usage

use const_array_attrs::sorted;

#[sorted]
pub const KEYWORDS: [(&'static str, u8); 3] = [
    ("Pa", 1),
    ("N", 2),
    ("ft", 3),
];

let mut it = KEYWORDS.iter();

assert_eq!(it.next(), Some(&("N", 2)));
assert_eq!(it.next(), Some(&("Pa", 1)));
assert_eq!(it.next(), Some(&("ft", 3)));

Project status

This package is in the very early stage.

Attribute Macros

Adding the transition table (trie tree) to the const array.

Sorting const array by &str as key.