3 releases (breaking)
0.3.0 | Apr 11, 2022 |
---|---|
0.2.0 | Aug 24, 2021 |
0.1.0 | Aug 25, 2020 |
#1013 in Rust patterns
89 downloads per month
Used in 4 crates
(3 directly)
28KB
403 lines
lset
This crate contains types for measuring linear sets by either the end
points (Line
) or by a starting point and the number of elements (Span
).
In the interest of zero-cost abstractions, all methods are always inlined for maximum compiler optimization. Thus, you only pay for the conversions that are actually used.
License: Apache-2.0
lib.rs
:
This crate contains types for measuring linear sets by either the end
points (Line
) or by a starting point and the number of elements (Span
).
In the interest of zero-cost abstractions, all methods are always inlined for maximum compiler optimization. Thus, you only pay for the conversions that are actually used.