Cargo Features
[dependencies]
radixal = { version = "0.3.0", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverradixal
is added without
somewhere in the dependency tree.default-features = false - std default
-
Allows to add some provided methods relying on collections from the standard library.
Affects
radixal::IntoDigits.is_permutation
,radixal::IntoDigits.is_decimal_permutation
,radixal::IntoDigits.is_binary_permutation
…