Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

45
vendor/fixedbitset/src/range.rs vendored Normal file
View File

@@ -0,0 +1,45 @@
use core::ops::{Range, RangeFrom, RangeFull, RangeTo};
// Taken from https://github.com/bluss/odds/blob/master/src/range.rs.
/// **IndexRange** is implemented by Rust's built-in range types, produced
/// by range syntax like `..`, `a..`, `..b` or `c..d`.
pub trait IndexRange<T = usize> {
#[inline]
/// Start index (inclusive)
fn start(&self) -> Option<T> {
None
}
#[inline]
/// End index (exclusive)
fn end(&self) -> Option<T> {
None
}
}
impl<T> IndexRange<T> for RangeFull {}
impl<T: Copy> IndexRange<T> for RangeFrom<T> {
#[inline]
fn start(&self) -> Option<T> {
Some(self.start)
}
}
impl<T: Copy> IndexRange<T> for RangeTo<T> {
#[inline]
fn end(&self) -> Option<T> {
Some(self.end)
}
}
impl<T: Copy> IndexRange<T> for Range<T> {
#[inline]
fn start(&self) -> Option<T> {
Some(self.start)
}
#[inline]
fn end(&self) -> Option<T> {
Some(self.end)
}
}