Struct Interval

Source
pub struct Interval<T = isize>
where T: Sub<Output = T> + Add<Output = T> + Copy, isize: Into<T>,
{ /* private fields */ }
Expand description

Alternative implementation of interval.

Both core::ops::Range, core::ops::RangeInclusive are convertable to crate::Interval

Implementations§

Source§

impl<T> Interval<T>
where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

Source

pub fn new(first: T, last: T) -> Interval<T>

Constructor of an interval. Expects closed interval in arguments.

Trait Implementations§

Source§

impl<T> Debug for Interval<T>
where T: Sub<Output = T> + Add<Output = T> + Debug + Copy, isize: Into<T>,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T> From<Range<T>> for Interval<T>
where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

Source§

fn from(src: Range<T>) -> Interval<T>

Converts to this type from the input type.
Source§

impl<T> From<RangeInclusive<T>> for Interval<T>
where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

Source§

fn from(src: RangeInclusive<T>) -> Interval<T>

Converts to this type from the input type.
Source§

impl<T> IntervalAdapter<T> for Interval<T>
where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

Source§

fn first(&self) -> T

the first element of the ( closed ) interval
Source§

fn last(&self) -> T

the last element of the ( closed ) interval
Source§

fn len(&self) -> T

number of discrete elements in the interval
Source§

fn closed(&self) -> (T, T)

interval in closed format as pair of numbers
Source§

fn closed_open(&self) -> (T, T)

interval in closed-open format as pair of numbers
Source§

fn first_len(&self) -> (T, T)

interval in first-length format as pair of numbers
Source§

impl<T> PartialEq for Interval<T>
where T: Sub<Output = T> + Add<Output = T> + PartialEq + Copy, isize: Into<T>,

Source§

fn eq(&self, other: &Interval<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> StructuralPartialEq for Interval<T>
where T: Add<Output = T> + Sub<Output = T> + Copy, isize: Into<T>,

Auto Trait Implementations§

§

impl<T> Freeze for Interval<T>
where isize: Sized, T: Freeze,

§

impl<T> RefUnwindSafe for Interval<T>

§

impl<T> Send for Interval<T>
where isize: Sized, T: Send,

§

impl<T> Sync for Interval<T>
where isize: Sized, T: Sync,

§

impl<T> Unpin for Interval<T>
where isize: Sized, T: Unpin,

§

impl<T> UnwindSafe for Interval<T>
where isize: Sized, T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<Target, Original> VectorizedInto<Target> for Original
where Target: VectorizedFrom<Original>,

Source§

fn vectorized_into(self) -> Target

Performs the conversion.