[][src]Struct gluon_base::pos::Span

pub struct Span<I> { /* fields omitted */ }

A region of code in a source file

Methods

impl<I> Span<I> where
    I: Ord
[src]

pub fn new(start: I, end: I) -> Span<I>[src]

Create a new span

use codespan::{ByteIndex, Span};

let span = Span::new(ByteIndex(3), ByteIndex(6));
assert_eq!(span.start(), ByteIndex(3));
assert_eq!(span.end(), ByteIndex(6));

start and end are reordered to maintain the invariant that start <= end

use codespan::{ByteIndex, Span};

let span = Span::new(ByteIndex(6), ByteIndex(3));
assert_eq!(span.start(), ByteIndex(3));
assert_eq!(span.end(), ByteIndex(6));

pub fn map<F, J>(self, f: F) -> Span<J> where
    F: FnMut(I) -> J,
    J: Ord
[src]

impl<I> Span<I>[src]

pub fn start(self) -> I[src]

Get the start index

pub fn end(self) -> I[src]

Get the end index

impl<I> Span<I> where
    I: Index
[src]

pub fn subspan(
    &self,
    begin: <I as Index>::Offset,
    end: <I as Index>::Offset
) -> Span<I>
[src]

Makes a span from offsets relative to the start of this span.

pub fn from_offset(start: I, off: <I as Index>::Offset) -> Span<I>[src]

Create a new span from a byte start and an offset

pub fn with_start(self, start: I) -> Span<I>[src]

Return a new span with the low byte position replaced with the supplied byte position

use codespan::{ByteIndex, Span};

let span = Span::new(ByteIndex(3), ByteIndex(6));
assert_eq!(span.with_start(ByteIndex(2)), Span::new(ByteIndex(2), ByteIndex(6)));
assert_eq!(span.with_start(ByteIndex(5)), Span::new(ByteIndex(5), ByteIndex(6)));
assert_eq!(span.with_start(ByteIndex(7)), Span::new(ByteIndex(6), ByteIndex(7)));

pub fn with_end(self, end: I) -> Span<I>[src]

Return a new span with the high byte position replaced with the supplied byte position

use codespan::{ByteIndex, Span};

let span = Span::new(ByteIndex(3), ByteIndex(6));
assert_eq!(span.with_end(ByteIndex(7)), Span::new(ByteIndex(3), ByteIndex(7)));
assert_eq!(span.with_end(ByteIndex(5)), Span::new(ByteIndex(3), ByteIndex(5)));
assert_eq!(span.with_end(ByteIndex(2)), Span::new(ByteIndex(2), ByteIndex(3)));

pub fn contains(self, other: Span<I>) -> bool[src]

Return true if self fully encloses other.

use codespan::{ByteIndex, Span};

let a = Span::new(ByteIndex(5), ByteIndex(8));

assert_eq!(a.contains(a), true);
assert_eq!(a.contains(Span::new(ByteIndex(6), ByteIndex(7))), true);
assert_eq!(a.contains(Span::new(ByteIndex(6), ByteIndex(10))), false);
assert_eq!(a.contains(Span::new(ByteIndex(3), ByteIndex(6))), false);

pub fn containment(self, pos: I) -> Ordering[src]

Return Equal if self contains pos, otherwise it returns Less if pos is before start or Greater if pos is after or at end.

use codespan::{ByteIndex, Span};
use std::cmp::Ordering::*;

let a = Span::new(ByteIndex(5), ByteIndex(8));

assert_eq!(a.containment(ByteIndex(4)), Less);
assert_eq!(a.containment(ByteIndex(5)), Equal);
assert_eq!(a.containment(ByteIndex(6)), Equal);
assert_eq!(a.containment(ByteIndex(8)), Equal);
assert_eq!(a.containment(ByteIndex(9)), Greater);

pub fn containment_exclusive(self, pos: I) -> Ordering[src]

Return Equal if self contains pos, otherwise it returns Less if pos is before start or Greater if pos is strictly after end.

use codespan::{ByteIndex, Span};
use std::cmp::Ordering::*;

let a = Span::new(ByteIndex(5), ByteIndex(8));

assert_eq!(a.containment_exclusive(ByteIndex(4)), Less);
assert_eq!(a.containment_exclusive(ByteIndex(5)), Equal);
assert_eq!(a.containment_exclusive(ByteIndex(6)), Equal);
assert_eq!(a.containment_exclusive(ByteIndex(8)), Greater);
assert_eq!(a.containment_exclusive(ByteIndex(9)), Greater);

pub fn to(self, end: Span<I>) -> Span<I>[src]

Return a Span that would enclose both self and end.

self     ~~~~~~~
end                     ~~~~~~~~
returns  ~~~~~~~~~~~~~~~~~~~~~~~
use codespan::{ByteIndex, Span};

let a = Span::new(ByteIndex(2), ByteIndex(5));
let b = Span::new(ByteIndex(10), ByteIndex(14));

assert_eq!(a.to(b), Span::new(ByteIndex(2), ByteIndex(14)));

pub fn between(self, end: Span<I>) -> Span<I>[src]

Return a Span between the end of self to the beginning of end.

self     ~~~~~~~
end                     ~~~~~~~~
returns         ~~~~~~~~~
use codespan::{ByteIndex, Span};

let a = Span::new(ByteIndex(2), ByteIndex(5));
let b = Span::new(ByteIndex(10), ByteIndex(14));

assert_eq!(a.between(b), Span::new(ByteIndex(5), ByteIndex(10)));

pub fn until(self, end: Span<I>) -> Span<I>[src]

Return a Span between the beginning of self to the beginning of end.

self     ~~~~~~~
end                     ~~~~~~~~
returns  ~~~~~~~~~~~~~~~~
use codespan::{ByteIndex, Span};

let a = Span::new(ByteIndex(2), ByteIndex(5));
let b = Span::new(ByteIndex(10), ByteIndex(14));

assert_eq!(a.until(b), Span::new(ByteIndex(2), ByteIndex(10)));

Trait Implementations

impl<I> Copy for Span<I> where
    I: Copy
[src]

impl<I> Eq for Span<I> where
    I: Eq
[src]

impl<I> Default for Span<I> where
    I: Default
[src]

impl<I> PartialEq<Span<I>> for Span<I> where
    I: PartialEq<I>, 
[src]

impl<I> Display for Span<I> where
    I: Display
[src]

impl<I> Clone for Span<I> where
    I: Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<I> PartialOrd<Span<I>> for Span<I> where
    I: PartialOrd<I>, 
[src]

impl<I> Ord for Span<I> where
    I: Ord
[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Returns max if self is greater than max, and min if self is less than min. Otherwise this will return self. Panics if min > max. Read more

impl<I> Debug for Span<I> where
    I: Debug
[src]

Auto Trait Implementations

impl<I> Send for Span<I> where
    I: Send

impl<I> Sync for Span<I> where
    I: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.