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 whenever closed-interval-set is added without default-features = false somewhere in the dependency tree.

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 backs RangeVecs.