use core::{
cmp, fmt,
ops::{Bound, RangeBounds},
};
#[derive(Clone, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "validation", derive(bytecheck::CheckBytes))]
#[cfg_attr(feature = "strict", repr(C))]
pub struct ArchivedRange<T> {
pub start: T,
pub end: T,
}
impl<T: fmt::Debug> fmt::Debug for ArchivedRange<T> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
self.start.fmt(fmt)?;
write!(fmt, "..")?;
self.end.fmt(fmt)?;
Ok(())
}
}
impl<T: PartialOrd<T>> ArchivedRange<T> {
#[inline]
pub fn contains<U>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
{
<Self as RangeBounds<T>>::contains(self, item)
}
#[inline]
pub fn is_empty(&self) -> bool {
match self.start.partial_cmp(&self.end) {
None | Some(cmp::Ordering::Greater) | Some(cmp::Ordering::Equal) => true,
Some(cmp::Ordering::Less) => false,
}
}
}
impl<T> RangeBounds<T> for ArchivedRange<T> {
#[inline]
fn start_bound(&self) -> Bound<&T> {
Bound::Included(&self.start)
}
#[inline]
fn end_bound(&self) -> Bound<&T> {
Bound::Excluded(&self.end)
}
}
#[derive(Clone, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "validation", derive(bytecheck::CheckBytes))]
#[cfg_attr(feature = "strict", repr(C))]
pub struct ArchivedRangeInclusive<T> {
pub start: T,
pub end: T,
}
impl<T: fmt::Debug> fmt::Debug for ArchivedRangeInclusive<T> {
#[inline]
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
self.start.fmt(fmt)?;
write!(fmt, "..=")?;
self.end.fmt(fmt)?;
Ok(())
}
}
impl<T: PartialOrd<T>> ArchivedRangeInclusive<T> {
#[inline]
pub fn contains<U>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
{
<Self as RangeBounds<T>>::contains(self, item)
}
#[inline]
pub fn is_empty(&self) -> bool {
match self.start.partial_cmp(&self.end) {
None | Some(cmp::Ordering::Greater) => true,
Some(cmp::Ordering::Less) | Some(cmp::Ordering::Equal) => false,
}
}
}
impl<T> RangeBounds<T> for ArchivedRangeInclusive<T> {
#[inline]
fn start_bound(&self) -> Bound<&T> {
Bound::Included(&self.start)
}
#[inline]
fn end_bound(&self) -> Bound<&T> {
Bound::Included(&self.end)
}
}
#[derive(Clone, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "validation", derive(bytecheck::CheckBytes))]
#[cfg_attr(feature = "strict", repr(C))]
pub struct ArchivedRangeFrom<T> {
pub start: T,
}
impl<T: fmt::Debug> fmt::Debug for ArchivedRangeFrom<T> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
self.start.fmt(fmt)?;
write!(fmt, "..")?;
Ok(())
}
}
impl<T: PartialOrd<T>> ArchivedRangeFrom<T> {
#[inline]
pub fn contains<U>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: ?Sized + PartialOrd<T>,
{
<Self as RangeBounds<T>>::contains(self, item)
}
}
impl<T> RangeBounds<T> for ArchivedRangeFrom<T> {
#[inline]
fn start_bound(&self) -> Bound<&T> {
Bound::Included(&self.start)
}
#[inline]
fn end_bound(&self) -> Bound<&T> {
Bound::Unbounded
}
}
#[derive(Clone, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "validation", derive(bytecheck::CheckBytes))]
#[cfg_attr(feature = "strict", repr(C))]
pub struct ArchivedRangeTo<T> {
pub end: T,
}
impl<T: fmt::Debug> fmt::Debug for ArchivedRangeTo<T> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(fmt, "..")?;
self.end.fmt(fmt)?;
Ok(())
}
}
impl<T: PartialOrd<T>> ArchivedRangeTo<T> {
#[inline]
pub fn contains<U>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: ?Sized + PartialOrd<T>,
{
<Self as RangeBounds<T>>::contains(self, item)
}
}
impl<T> RangeBounds<T> for ArchivedRangeTo<T> {
#[inline]
fn start_bound(&self) -> Bound<&T> {
Bound::Unbounded
}
#[inline]
fn end_bound(&self) -> Bound<&T> {
Bound::Excluded(&self.end)
}
}
#[derive(Clone, Default, PartialEq, Eq, Hash)]
#[cfg_attr(feature = "validation", derive(bytecheck::CheckBytes))]
#[cfg_attr(feature = "strict", repr(C))]
pub struct ArchivedRangeToInclusive<T> {
pub end: T,
}
impl<T: fmt::Debug> fmt::Debug for ArchivedRangeToInclusive<T> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(fmt, "..=")?;
self.end.fmt(fmt)?;
Ok(())
}
}
impl<T: PartialOrd<T>> ArchivedRangeToInclusive<T> {
#[inline]
pub fn contains<U>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: ?Sized + PartialOrd<T>,
{
<Self as RangeBounds<T>>::contains(self, item)
}
}
impl<T> RangeBounds<T> for ArchivedRangeToInclusive<T> {
#[inline]
fn start_bound(&self) -> Bound<&T> {
Bound::Unbounded
}
#[inline]
fn end_bound(&self) -> Bound<&T> {
Bound::Included(&self.end)
}
}