Struct arithmetic_typing::arith::Substitutions

source ·
pub struct Substitutions<Prim: PrimitiveType> { /* private fields */ }
Expand description

Set of equations and constraints on type variables.

Implementations§

source§

impl<Prim: PrimitiveType> Substitutions<Prim>

source

pub fn insert_constraint<C>( &mut self, var_idx: usize, constraint: &C, errors: OpErrors<'_, Prim>, )
where C: Constraint<Prim> + Clone,

Inserts constraints for a type var with the specified index and all vars it is equivalent to.

source

pub fn apply_static_len(&mut self, len: TupleLen) -> Result<(), ErrorKind<Prim>>

Marks len as static, i.e., not containing UnknownLen::Dynamic components.

source

pub fn fast_resolve<'a>(&'a self, ty: &'a Type<Prim>) -> &'a Type<Prim>

Resolves the type by following established equality links between type variables.

source

pub fn resolver(&self) -> impl VisitMut<Prim> + '_

Returns a visitor that resolves the type using equality relations in these Substitutions.

source

pub fn new_type_var(&mut self) -> Type<Prim>

Creates and returns a new type variable.

source

pub fn unify( &mut self, lhs: &Type<Prim>, rhs: &Type<Prim>, errors: OpErrors<'_, Prim>, )

Unifies types in lhs and rhs.

  • LHS corresponds to the lvalue in assignments and to called function signature in fn calls.
  • RHS corresponds to the rvalue in assignments and to the type of the called function.

If unification is impossible, the corresponding error(s) will be put into errors.

Trait Implementations§

source§

impl<Prim: Clone + PrimitiveType> Clone for Substitutions<Prim>

source§

fn clone(&self) -> Substitutions<Prim>

Returns a copy 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<Prim: Debug + PrimitiveType> Debug for Substitutions<Prim>

source§

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

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

impl<Prim: PrimitiveType> Default for Substitutions<Prim>

source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<Prim> Freeze for Substitutions<Prim>

§

impl<Prim> !RefUnwindSafe for Substitutions<Prim>

§

impl<Prim> Send for Substitutions<Prim>

§

impl<Prim> Sync for Substitutions<Prim>

§

impl<Prim> Unpin for Substitutions<Prim>
where Prim: Unpin,

§

impl<Prim> !UnwindSafe for Substitutions<Prim>

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

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

§

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>,

§

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>,

§

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.