Skip to main content

ExprType

Struct ExprType 

Source
pub struct ExprType { /* private fields */ }
Expand description

Represents a type in the expression language.

Fields are crate-private to enforce normalization via constructors. Use code() and params() for read access.

Implementations§

Source§

impl ExprType

Source

pub const BOOL: ExprType

Source

pub const INT: ExprType

Source

pub const FLOAT: ExprType

Source

pub const STRING: ExprType

Source

pub const PATH: ExprType

Source

pub const RANGE_EXPR: ExprType

Source

pub const NULLTYPE: ExprType

Source

pub const ANY: ExprType

Source

pub const NORETURN: ExprType

Source

pub const T: ExprType

Source

pub const T1: ExprType

Source

pub const T2: ExprType

Source

pub const T3: ExprType

Source

pub fn code(&self) -> TypeCode

The type code for this type.

Source

pub fn params(&self) -> &[ExprType]

The type parameters (e.g. element type for lists, member types for unions).

Source

pub fn list(elem: ExprType) -> Self

Source

pub fn union(types: Vec<ExprType>) -> Self

Source

pub fn unresolved(constraint: ExprType) -> Self

Source

pub fn signature(param_types: Vec<ExprType>, return_type: ExprType) -> Self

Create a function signature type: (param_types) -> return_type. Stored as params = [param0, param1, …, return_type].

Source

pub fn sig_params(&self) -> &[ExprType]

Get the parameter types of a signature (all params except the last).

Source

pub fn sig_return(&self) -> &ExprType

Get the return type of a signature (the last param).

Source

pub fn match_call( &self, arg_types: &[ExprType], ) -> Option<HashMap<TypeCode, ExprType>>

Try to match a call’s argument types against this signature. Returns type variable bindings if successful, None if no match.

Source

pub fn resolve_call(&self, arg_types: &[ExprType]) -> Option<ExprType>

Resolve the return type of a signature given argument types. Matches args, substitutes bindings into return type.

Source§

impl ExprType

Source

pub fn is_list(&self) -> bool

Source

pub fn list_element_type(&self) -> Option<&ExprType>

Source

pub fn is_symbolic(&self) -> bool

Source

pub fn is_concrete(&self) -> bool

Source

pub fn substitute(&self, bindings: &HashMap<TypeCode, ExprType>) -> ExprType

Substitute type variables with concrete types.

Source

pub fn match_type( &self, other: &ExprType, ) -> Option<HashMap<TypeCode, ExprType>>

Try to match this (possibly symbolic) type against another type. Returns bindings if successful, None if no match.

Source

pub fn new(code: TypeCode, params: Vec<ExprType>) -> Self

Construct with normalization.

Source§

impl ExprType

Source

pub fn parse(s: &str) -> Result<ExprType, String>

Parse a type string like “int”, “list[string]”, “int?”, “int | string”, “unresolved[int]”.

Trait Implementations§

Source§

impl Clone for ExprType

Source§

fn clone(&self) -> ExprType

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for ExprType

Source§

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

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

impl Display for ExprType

Source§

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

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

impl From<ExprType> for ExprValue

Source§

fn from(t: ExprType) -> Self

Converts to this type from the input type.
Source§

impl Hash for ExprType

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 PartialEq for ExprType

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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 Serialize for ExprType

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for ExprType

Auto Trait Implementations§

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§

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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToCompactString for T
where T: Display,

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.