Rust macro for succinctly creating static slices.
```rust
static_slice![<type>: a1, a2, ..., an]
```
```rust
let bytes = static_slice![u8: 1, 3, 5, 7, 8];
```
```rust
enum TruthValue {
}
fn to_bools(x: TruthValue) -> &'static [bool] {
}
```
Public domain. Go for it.