pub enum IntrinsicFunction {
Show 74 variants
FloatRound,
FloatFloor,
FloatSqrt,
FloatSign,
FloatAbs,
FloatRnd,
FloatCos,
FloatSin,
FloatAcos,
FloatAsin,
FloatAtan2,
FloatMin,
FloatMax,
FloatClamp,
IntAbs,
IntRnd,
IntMax,
IntMin,
IntClamp,
IntToFloat,
StringLen,
VecFromSlice,
VecPush,
VecPop,
VecRemoveIndex,
VecClear,
VecCreate,
VecSubscript,
VecSubscriptMut,
VecSubscriptRange,
VecIter,
VecIterMut,
VecFor,
VecWhile,
VecFind,
VecSelfPush,
VecSelfExtend,
MapCreate,
MapFromSlicePair,
MapHas,
MapRemove,
MapIter,
MapIterMut,
MapLen,
MapIsEmpty,
MapSubscript,
MapSubscriptSet,
MapSubscriptMut,
MapSubscriptMutCreateIfNeeded,
Map2Create,
Map2Insert,
Map2Remove,
Map2Get,
Map2GetColumn,
Map2GetRow,
Map2Has,
SparseCreate,
SparseFromSlice,
SparseIter,
SparseIterMut,
SparseSubscript,
SparseSubscriptMut,
SparseHas,
SparseRemove,
GridCreate,
GridFromSlice,
GridGetColumn,
GridSet,
GridGet,
Float2Magnitude,
SparseAdd,
VecLen,
VecIsEmpty,
SparseNew,
}
Variants§
FloatRound
FloatFloor
FloatSqrt
FloatSign
FloatAbs
FloatRnd
FloatCos
FloatSin
FloatAcos
FloatAsin
FloatAtan2
FloatMin
FloatMax
FloatClamp
IntAbs
IntRnd
IntMax
IntMin
IntClamp
IntToFloat
StringLen
VecFromSlice
VecPush
VecPop
VecRemoveIndex
VecClear
VecCreate
VecSubscript
VecSubscriptMut
VecSubscriptRange
VecIter
VecIterMut
VecFor
VecWhile
VecFind
VecSelfPush
VecSelfExtend
MapCreate
MapFromSlicePair
MapHas
MapRemove
MapIter
MapIterMut
MapLen
MapIsEmpty
MapSubscript
MapSubscriptSet
MapSubscriptMut
MapSubscriptMutCreateIfNeeded
Map2Create
Map2Insert
Map2Remove
Map2Get
Map2GetColumn
Map2GetRow
Map2Has
SparseCreate
SparseFromSlice
SparseIter
SparseIterMut
SparseSubscript
SparseSubscriptMut
SparseHas
SparseRemove
GridCreate
GridFromSlice
GridGetColumn
GridSet
GridGet
Float2Magnitude
SparseAdd
VecLen
VecIsEmpty
SparseNew
Trait Implementations§
Source§impl Clone for IntrinsicFunction
impl Clone for IntrinsicFunction
Source§fn clone(&self) -> IntrinsicFunction
fn clone(&self) -> IntrinsicFunction
Returns a copy 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
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