Cargo Features
[dependencies]
closed-interval-set = { version = "1.1.0", default-features = false, features = ["internal_checks", "inline_storage"] }
- default = inline_storage
-
The
inline_storage
feature is set by default wheneverclosed-interval-set
is added without
somewhere in the dependency tree.default-features = false - internal_checks
-
enable self-check (can be slow, mostly useful to debug the library); best used with
cfg(debug_assertions)
. - inline_storage default
-
Reserve some inline space in the
SmallVec
that backsRangeVec
s.