Sequence

Enum Sequence 

Source
pub enum Sequence<T>
where T: DafnyType,
{ ArraySequence { values: Rc<Vec<T>>, }, ConcatSequence { left: Rc<RefCell<Sequence<T>>>, right: Rc<RefCell<Sequence<T>>>, length: SizeT, cache: Rc<RefCell<Option<Rc<Vec<T>>>>>, }, }

Variants§

§

ArraySequence

Fields

§values: Rc<Vec<T>>
§

ConcatSequence

Fields

§left: Rc<RefCell<Sequence<T>>>
§right: Rc<RefCell<Sequence<T>>>
§length: SizeT
§cache: Rc<RefCell<Option<Rc<Vec<T>>>>>

Implementations§

Source§

impl<T> Sequence<T>
where T: DafnyType,

Source

pub fn from_array(values: Ptr<[T]>) -> Sequence<T>

Source

pub fn from_array_object(values: &Object<[T]>) -> Sequence<T>

Source

pub fn from_array_slice( values: Ptr<[T]>, start: &DafnyInt, end: &DafnyInt, ) -> Sequence<T>

Source

pub fn from_array_slice_object( values: &Object<[T]>, start: &DafnyInt, end: &DafnyInt, ) -> Sequence<T>

Source

pub fn from_array_take(values: Ptr<[T]>, n: &DafnyInt) -> Sequence<T>

Source

pub fn from_array_take_object(values: &Object<[T]>, n: &DafnyInt) -> Sequence<T>

Source

pub fn from_array_drop(values: Ptr<[T]>, n: &DafnyInt) -> Sequence<T>

Source

pub fn from_array_drop_object(values: &Object<[T]>, n: &DafnyInt) -> Sequence<T>

Source

pub fn from_array_owned(values: Vec<T>) -> Sequence<T>

Source

pub fn to_array(&self) -> Rc<Vec<T>>

Source

pub fn append_simple(array: &mut Vec<T>, this: &Sequence<T>) -> bool

Source

pub fn append_recursive(array: &mut Vec<T>, this: &Sequence<T>)

Source

pub fn cardinality_usize(&self) -> SizeT

Returns the cardinality or length of this Sequence<T>.

Source

pub fn cardinality(&self) -> DafnyInt

Source

pub fn get_usize(&self, index: SizeT) -> T

Source

pub fn slice(&self, start: &DafnyInt, end: &DafnyInt) -> Sequence<T>

Source

pub fn take(&self, end: &DafnyInt) -> Sequence<T>

Source

pub fn drop(&self, start: &DafnyInt) -> Sequence<T>

Source

pub fn update_index(&self, index: &DafnyInt, value: &T) -> Self

Source

pub fn concat(&self, other: &Sequence<T>) -> Sequence<T>

Source

pub fn get(&self, index: &DafnyInt) -> T

Source

pub fn iter(&self) -> SequenceIter<T>

Source§

impl<T: DafnyTypeEq> Sequence<T>

Source

pub fn as_dafny_multiset(&self) -> Multiset<T>

Source§

impl<T: DafnyTypeEq> Sequence<T>

Source

pub fn contains(&self, value: &T) -> bool

Source§

impl<U: DafnyType> Sequence<U>

Source

pub fn coerce<V: DafnyType>( f: Rc<impl Fn(U) -> V>, ) -> Rc<impl Fn(Sequence<U>) -> Sequence<V>>

Trait Implementations§

Source§

impl<T: DafnyType> Add<&Sequence<T>> for &Sequence<T>

Source§

type Output = Sequence<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &Sequence<T>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T> Clone for Sequence<T>
where T: DafnyType + Clone,

Source§

fn clone(&self) -> Sequence<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<V: DafnyType> DafnyPrint for Sequence<V>

Source§

fn fmt_print(&self, f: &mut Formatter<'_>, _in_seq: bool) -> Result

Source§

fn is_char() -> bool

Source§

impl<V: DafnyType> Debug for Sequence<V>

Source§

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

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

impl<T: DafnyType> Default for Sequence<T>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<T: DafnyType> FromIterator<T> for Sequence<T>

Source§

fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self

Creates a value from an iterator. Read more
Source§

impl<T: DafnyType + Hash> Hash for Sequence<T>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T: DafnyType> NontrivialDefault for Sequence<T>

Source§

impl<T> PartialEq for Sequence<T>
where T: DafnyType + PartialEq<T>,

Source§

fn eq(&self, other: &Sequence<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: DafnyTypeEq> PartialOrd for Sequence<T>

Source§

fn partial_cmp(&self, other: &Sequence<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T: DafnyTypeEq> Eq for Sequence<T>

Auto Trait Implementations§

§

impl<T> Freeze for Sequence<T>

§

impl<T> !RefUnwindSafe for Sequence<T>

§

impl<T> !Send for Sequence<T>

§

impl<T> !Sync for Sequence<T>

§

impl<T> Unpin for Sequence<T>

§

impl<T> !UnwindSafe for Sequence<T>

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> AnyRef for T
where T: 'static,

Source§

fn as_any_ref(&self) -> &(dyn Any + 'static)

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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<T> Upcast<T> for T
where T: ?Sized,

Source§

fn upcast(&self) -> Ptr<T>

Source§

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

Source§

fn upcast(&self) -> Object<T>

Source§

impl<T> DafnyType for T
where T: Clone + DafnyPrint + 'static,

Source§

impl<T> DafnyTypeEq for T
where T: DafnyType + Hash + Eq,