pub enum IntrinsicFunction {
Show 85 variants
ByteToString,
ByteToInt,
ByteToFloat,
ByteToCodepoint,
CodepointToString,
CodepointToInt,
BoolToString,
IntAbs,
IntRnd,
IntMax,
IntMin,
IntClamp,
IntToFloat,
IntToString,
FloatRound,
FloatFloor,
FloatSqrt,
FloatSign,
FloatAbs,
FloatRnd,
FloatCos,
FloatSin,
FloatAcos,
FloatAsin,
FloatAtan2,
FloatMin,
FloatMax,
FloatClamp,
FloatToString,
StringLen,
StringToString,
StringStartsWith,
StringToInt,
StringToFloat,
RangeInit,
VecPush,
VecPop,
VecRemoveIndex,
VecRemoveIndexGetValue,
VecRemoveFirstIndexGetValue,
VecClear,
VecSwap,
VecInsert,
VecFirst,
VecGet,
VecSlice,
VecLast,
VecLen,
VecCapacity,
VecIsEmpty,
VecExtend,
TransformerFor,
TransformerWhile,
TransformerFindMap,
TransformerAny,
TransformerAll,
TransformerMap,
TransformerFilter,
TransformerFilterInPlace,
TransformerFilterMap,
TransformerFind,
TransformerFold,
MapIsEmpty,
MapHas,
MapRemove,
MapLen,
MapCapacity,
GridSet,
GridGet,
GridWidth,
GridHeight,
SparseAdd,
SparseRemove,
SparseIsAlive,
Float2Magnitude,
RuntimePanic,
RuntimeHalt,
RuntimeStep,
EnumDiscriminant,
EnumFromDiscriminant,
PtrFromU32,
StringDuplicate,
ByteVectorToString,
ByteVectorToStringStorage,
VecCopy,
}
Variants§
ByteToString
ByteToInt
ByteToFloat
ByteToCodepoint
CodepointToString
CodepointToInt
BoolToString
IntAbs
IntRnd
IntMax
IntMin
IntClamp
IntToFloat
IntToString
FloatRound
FloatFloor
FloatSqrt
FloatSign
FloatAbs
FloatRnd
FloatCos
FloatSin
FloatAcos
FloatAsin
FloatAtan2
FloatMin
FloatMax
FloatClamp
FloatToString
StringLen
StringToString
StringStartsWith
StringToInt
StringToFloat
RangeInit
VecPush
VecPop
VecRemoveIndex
VecRemoveIndexGetValue
VecRemoveFirstIndexGetValue
VecClear
VecSwap
VecInsert
VecFirst
VecGet
VecSlice
VecLast
VecLen
VecCapacity
VecIsEmpty
VecExtend
TransformerFor
TransformerWhile
TransformerFindMap
TransformerAny
TransformerAll
TransformerMap
TransformerFilter
TransformerFilterInPlace
TransformerFilterMap
TransformerFind
TransformerFold
MapIsEmpty
MapHas
MapRemove
MapLen
MapCapacity
GridSet
GridGet
GridWidth
GridHeight
SparseAdd
SparseRemove
SparseIsAlive
Float2Magnitude
RuntimePanic
RuntimeHalt
RuntimeStep
EnumDiscriminant
EnumFromDiscriminant
PtrFromU32
StringDuplicate
ByteVectorToString
ByteVectorToStringStorage
VecCopy
Trait Implementations§
Source§impl Clone for IntrinsicFunction
impl Clone for IntrinsicFunction
Source§fn clone(&self) -> IntrinsicFunction
fn clone(&self) -> IntrinsicFunction
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 Debug for IntrinsicFunction
impl Debug for IntrinsicFunction
Source§impl Display for IntrinsicFunction
impl Display for IntrinsicFunction
Source§impl Hash for IntrinsicFunction
impl Hash for IntrinsicFunction
Source§impl PartialEq for IntrinsicFunction
impl PartialEq for IntrinsicFunction
impl Eq for IntrinsicFunction
impl StructuralPartialEq for IntrinsicFunction
Auto Trait Implementations§
impl Freeze for IntrinsicFunction
impl RefUnwindSafe for IntrinsicFunction
impl Send for IntrinsicFunction
impl Sync for IntrinsicFunction
impl Unpin for IntrinsicFunction
impl UnwindSafe for IntrinsicFunction
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