pub struct GenericFunctionDecl<Head, Leaf>{
pub name: String,
pub subtype: FunctionSubtype,
pub schema: Schema,
pub resolved_schema: Head,
pub merge: Option<GenericExpr<Head, Leaf>>,
pub cost: Option<DefaultCost>,
pub unextractable: bool,
pub internal_hidden: bool,
pub internal_let: bool,
pub span: Span,
pub term_constructor: Option<String>,
}Expand description
Represents the declaration of a function directly parsed from source syntax.
Fields§
§name: String§subtype: FunctionSubtype§schema: SchemaUntyped schema
resolved_schema: HeadResolved schema after typechecking is stored here, otherwise “”.
merge: Option<GenericExpr<Head, Leaf>>§cost: Option<DefaultCost>§unextractable: boolHidden functions are excluded from print-size output. Used for internal tables generated by proof production.
internal_let: boolGlobals are desugared to functions, with this flag set to true. This is used by visualization to handle globals differently.
span: Span§term_constructor: Option<String>For view tables in proof encoding: the constructor to use for building terms from the first n-1 children during extraction.
Implementations§
Source§impl GenericFunctionDecl<String, String>
impl GenericFunctionDecl<String, String>
Sourcepub fn function(
span: Span,
name: String,
schema: Schema,
merge: Option<GenericExpr<String, String>>,
) -> Self
pub fn function( span: Span, name: String, schema: Schema, merge: Option<GenericExpr<String, String>>, ) -> Self
Constructs a function
Sourcepub fn constructor(
span: Span,
name: String,
schema: Schema,
cost: Option<DefaultCost>,
unextractable: bool,
hidden: bool,
) -> Self
pub fn constructor( span: Span, name: String, schema: Schema, cost: Option<DefaultCost>, unextractable: bool, hidden: bool, ) -> Self
Constructs a constructor
Source§impl<Head, Leaf> GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> GenericFunctionDecl<Head, Leaf>
pub fn visit_exprs( self, f: &mut impl FnMut(GenericExpr<Head, Leaf>) -> GenericExpr<Head, Leaf>, ) -> GenericFunctionDecl<Head, Leaf>
Trait Implementations§
Source§impl<Head, Leaf> Clone for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> Clone for GenericFunctionDecl<Head, Leaf>
Source§fn clone(&self) -> GenericFunctionDecl<Head, Leaf>
fn clone(&self) -> GenericFunctionDecl<Head, Leaf>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Head, Leaf> Debug for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> Debug for GenericFunctionDecl<Head, Leaf>
Source§impl<Head, Leaf> Hash for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> Hash for GenericFunctionDecl<Head, Leaf>
Source§impl<Head, Leaf> PartialEq for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> PartialEq for GenericFunctionDecl<Head, Leaf>
Source§fn eq(&self, other: &GenericFunctionDecl<Head, Leaf>) -> bool
fn eq(&self, other: &GenericFunctionDecl<Head, Leaf>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<Head, Leaf> Eq for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> StructuralPartialEq for GenericFunctionDecl<Head, Leaf>
Auto Trait Implementations§
impl<Head, Leaf> Freeze for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> RefUnwindSafe for GenericFunctionDecl<Head, Leaf>where
Head: RefUnwindSafe,
Leaf: RefUnwindSafe,
impl<Head, Leaf> Send for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> Sync for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> Unpin for GenericFunctionDecl<Head, Leaf>
impl<Head, Leaf> UnwindSafe for GenericFunctionDecl<Head, Leaf>where
Head: UnwindSafe,
Leaf: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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