const-tools 0.1.0

Utilities to help write safe const fns such as destructuring and array operations.
Documentation
[dependencies]

[dev-dependencies.trybuild]
version = "1.0.111"

[lib]
name = "const_tools"
path = "src/lib.rs"

[package]
authors = ["Mick van Gelderen"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["rust-patterns"]
description = "Utilities to help write safe const fns such as destructuring and array operations."
edition = "2024"
keywords = ["const", "array", "map", "zip", "destructure"]
license = "MIT OR Apache-2.0"
name = "const-tools"
readme = false
repository = "https://github.com/mickvangelderen/const-map-array"
version = "0.1.0"

[[test]]
name = "compile_fail_tests"
path = "tests/compile_fail_tests.rs"

[[test]]
name = "destructure"
path = "tests/destructure.rs"

[[test]]
name = "fold"
path = "tests/fold.rs"

[[test]]
name = "map"
path = "tests/map.rs"

[[test]]
name = "scan"
path = "tests/scan.rs"

[[test]]
name = "unzip"
path = "tests/unzip.rs"

[[test]]
name = "zip"
path = "tests/zip.rs"