Versions in this module Expand all Collapse all v2 v2.2.0 Nov 6, 2023 Changes in this version + type ValueLike interface + GetComponent func() ComponentLike + SetComponent func(component ComponentLike) v2.1.0 Nov 6, 2023 Changes in this version + type AssociationsLike interface + type BinaryOperationLike interface + GetFirst func() Expression + GetOperator func() Operator + GetSecond func() Expression + SetFirst func(first Expression) + SetOperator func(operator Operator) + SetSecond func(second Expression) + type CharacterLike interface type InvocationLike + GetMethod func() string + SetMethod func(method string) type Operator + const MAGNITUDE + const PRECEDENCE + type ParameterIteratorLike interface + type UnaryOperationLike interface + GetExpression func() Expression + GetOperator func() Operator + SetExpression func(expression Expression) + SetOperator func(operator Operator) + type ValuesLike interface v2.0.0 Mar 15, 2023 Changes in this version + type AcceptClauseLike interface + GetMessage func() Expression + SetMessage func(message Expression) + type Accessible interface + GetValue func(index int) V + GetValues func(first int, last int) Sequential[V] + type AngleLike interface + type Annotation any + type ArithmeticLike interface + GetFirst func() Expression + GetOperator func() Operator + GetSecond func() Expression + SetFirst func(first Expression) + SetOperator func(operator Operator) + SetSecond func(second Expression) + type AssociationIteratorLike interface + type AssociationLike interface + type Associative interface + GetKeys func() Sequential[K] + GetValue func(key K) V + GetValues func(keys Sequential[K]) Sequential[V] + RemoveAll func() + RemoveValue func(key K) V + RemoveValues func(keys Sequential[K]) Sequential[V] + SetValue func(key K, value V) + type AttributeLike interface + GetIndices func() Sequential[Expression] + GetVariable func() string + SetIndices func(indices Sequential[Expression]) + SetVariable func(variable string) + type BinaryLike interface + type Binding interface + GetKey func() K + GetValue func() V + SetValue func(value V) + type BlockLike interface + GetExpression func() Expression + GetProcedure func() ProcedureLike + SetExpression func(expression Expression) + SetProcedure func(procedure ProcedureLike) + type BooleanLike interface + type Bounded interface + GetExtent func() Extent + GetFirst func() V + GetLast func() V + SetExtent func(extent Extent) + SetFirst func(value V) + SetLast func(value V) + type BreakClauseLike interface + type ByteIteratorLike interface + type BytecodeLike interface + type CatalogLike interface + type ChainingLike interface + GetFirst func() Expression + GetOperator func() Operator + GetSecond func() Expression + SetFirst func(first Expression) + SetOperator func(operator Operator) + SetSecond func(second Expression) + type CheckoutClauseLike interface + GetLevel func() Expression + GetMoniker func() Expression + GetRecipient func() Recipient + SetLevel func(level Expression) + SetMoniker func(moniker Expression) + SetRecipient func(recipient Recipient) + type Clause any + type Collection any + type CommentLike interface + type ComparisonLike interface + GetFirst func() Expression + GetOperator func() Operator + GetSecond func() Expression + SetFirst func(first Expression) + SetOperator func(operator Operator) + SetSecond func(second Expression) + type ComplementLike interface + GetExpression func() Expression + GetOperator func() Operator + SetExpression func(expression Expression) + SetOperator func(operator Operator) + type Complex interface + AsComplex func() complex128 + GetImaginary func() float64 + GetMagnitude func() float64 + GetPhase func() AngleLike + GetReal func() float64 + type ComponentIteratorLike interface + type ComponentLike interface + type ConfiguratorLike interface + type ContextLike interface + type ContinueClauseLike interface + type Continuous interface + AsReal func() float64 + IsInfinite func() bool + IsUndefined func() bool + IsZero func() bool + type ContinuumLike interface + type ControllerLike interface + type Custodial interface + Delete func() + Exists func() bool + Load func() []byte + Store func(configuration []byte) + type DereferenceLike interface + GetExpression func() Expression + GetOperator func() Operator + SetExpression func(expression Expression) + SetOperator func(operator Operator) + type DiscardClauseLike interface + GetDocument func() Expression + SetDocument func(document Expression) + type Discrete interface + AsBoolean func() bool + AsInteger func() int + type DurationLike interface + type Element any + type Encapsulated interface + ExtractAngle func() AngleLike + ExtractBinary func() BinaryLike + ExtractBoolean func() BooleanLike + ExtractCatalog func() CatalogLike + ExtractContinuum func() ContinuumLike[Continuous] + ExtractDuration func() DurationLike + ExtractInterval func() IntervalLike[Discrete] + ExtractList func() ListLike + ExtractMoment func() MomentLike + ExtractMoniker func() MonikerLike + ExtractNarrative func() NarrativeLike + ExtractNumber func() NumberLike + ExtractPattern func() PatternLike + ExtractPercentage func() PercentageLike + ExtractProbability func() ProbabilityLike + ExtractProcedure func() ProcedureLike + ExtractQueue func() QueueLike + ExtractQuote func() QuoteLike + ExtractResource func() ResourceLike + ExtractSet func() SetLike + ExtractSpectrum func() SpectrumLike[Lexical] + ExtractStack func() StackLike + ExtractSymbol func() SymbolLike + ExtractTag func() TagLike + ExtractVersion func() VersionLike + GetContext func() ContextLike + GetEntity func() Entity + GetNote func() NoteLike + IsAnnotated func() bool + IsParameterized func() bool + SetContext func(context ContextLike) + SetEntity func(entity Entity) + SetNote func(note NoteLike) + type Entity any + type ExponentialLike interface + GetBase func() Expression + GetExponent func() Expression + GetOperator func() Operator + SetBase func(base Expression) + SetExponent func(exponent Expression) + SetOperator func(operator Operator) + type Expression any + type Extent int + const EXCLUSIVE + const INCLUSIVE + const LEFT + const RIGHT + type FIFO interface + AddValue func(value V) + CloseQueue func() + GetCapacity func() int + RemoveHead func() (head V, ok bool) + type Flexible interface + AddValue func(value V) + AddValues func(values Sequential[V]) + RemoveAll func() + RemoveValue func(value V) + RemoveValues func(values Sequential[V]) + type IfClauseLike interface + GetBlock func() BlockLike + SetBlock func(block BlockLike) + type Instruction uint16 + func InstructionFromBytes(leftByte, rightByte byte) Instruction + func (v Instruction) GetLeftByte() byte + func (v Instruction) GetRightByte() byte + type InstructionIteratorLike interface + type IntegerLike interface + type IntervalLike interface + type IntrinsicLike interface + GetArguments func() Sequential[Expression] + GetFunction func() string + SetArguments func(arguments Sequential[Expression]) + SetFunction func(function string) + type InversionLike interface + GetExpression func() Expression + GetOperator func() Operator + SetExpression func(expression Expression) + SetOperator func(operator Operator) + type InvocationLike interface + GetArguments func() Sequential[Expression] + GetMessage func() string + GetOperator func() Operator + GetTarget func() Expression + IsSynchronous func() bool + SetArguments func(arguments Sequential[Expression]) + SetMessage func(message string) + SetOperator func(operator Operator) + SetTarget func(target Expression) + type Key any + type LIFO interface + AddValue func(value V) + GetCapacity func() int + GetTop func() V + RemoveAll func() + RemoveTop func() V + type LetClauseLike interface + GetExpression func() Expression + GetRecipient func() (Recipient, Operator) + HasRecipient func() bool + SetExpression func(expression Expression) + SetRecipient func(recipient Recipient, operator Operator) + type Lexical interface + AsString func() string + type Line string + type LineIteratorLike interface + type ListLike interface + type LogicalLike interface + GetFirst func() Expression + GetOperator func() Operator + GetSecond func() Expression + SetFirst func(first Expression) + SetOperator func(operator Operator) + SetSecond func(second Expression) + type MagnitudeLike interface + GetExpression func() Expression + SetExpression func(expression Expression) + type Malleable interface + AddValue func(value V) + AddValues func(values Sequential[V]) + InsertValue func(slot int, value V) + InsertValues func(slot int, values Sequential[V]) + RemoveAll func() + RemoveValue func(index int) V + RemoveValues func(first int, last int) Sequential[V] + type MappingLike interface + type Matchable interface + GetMatches func(text string) []string + MatchesText func(text string) bool + type Mechanized interface + GetState func() int + SetState func(state int) + TransitionState func(event int) int + type MomentLike interface + type MonikerLike interface + type Name string + type NameIteratorLike interface + type NarrativeLike interface + type NotarizeClauseLike interface + GetDocument func() Expression + GetMoniker func() Expression + SetDocument func(document Expression) + SetMoniker func(moniker Expression) + type NoteLike interface + type NumberLike interface + type OnClauseLike interface + GetBlocks func() Sequential[BlockLike] + GetFailure func() SymbolLike + SetBlocks func(blocks Sequential[BlockLike]) + SetFailure func(failure SymbolLike) + type Operator int + const AMPERSAND + const AND + const ARROW + const ASSIGN + const AT + const BAR + const CARET + const DEFAULT + const DIFFERENCE + const DOT + const EQUAL + const IS + const LESS + const MATCHES + const MINUS + const MODULO + const MORE + const NOT + const OR + const PLUS + const PRODUCT + const QUOTIENT + const SANS + const SLASH + const STAR + const SUM + const TILDA + const UNEQUAL + const XOR + type Ordinal uint + type OrdinalIteratorLike interface + type ParameterLike interface + type Parameterized interface + GetNames func() Sequential[SymbolLike] + GetValue func(name SymbolLike) ComponentLike + SetValue func(name SymbolLike, value ComponentLike) + type PatternLike interface + type PercentageLike interface + type Polarized interface + IsNegative func() bool + type PostClauseLike interface + GetBag func() Expression + GetMessage func() Expression + SetBag func(bag Expression) + SetMessage func(message Expression) + type PrecedenceLike interface + GetExpression func() Expression + SetExpression func(expression Expression) + type Primitive any + type ProbabilityLike interface + type ProcedureLike interface + type PublishClauseLike interface + GetEvent func() Expression + SetEvent func(event Expression) + type QueueLike interface + type QuoteLike interface + type Range any + type Ratcheted interface + GetNext func() V + GetPrevious func() V + GetSlot func() int + HasNext func() bool + HasPrevious func() bool + ToEnd func() + ToSlot func(slot int) + ToStart func() + type RealLike interface + type Recipient any + type RejectClauseLike interface + GetMessage func() Expression + SetMessage func(message Expression) + type ResourceLike interface + type RetrieveClauseLike interface + GetBag func() Expression + GetRecipient func() Recipient + SetBag func(bag Expression) + SetRecipient func(recipient Recipient) + type ReturnClauseLike interface + GetResult func() Expression + SetResult func(result Expression) + type RuneIteratorLike interface + type RuneLike interface + type SaveClauseLike interface + GetDocument func() Expression + GetRecipient func() Recipient + SetDocument func(document Expression) + SetRecipient func(recipient Recipient) + type Searchable interface + ContainsAll func(values Sequential[V]) bool + ContainsAny func(values Sequential[V]) bool + ContainsValue func(value V) bool + GetIndex func(value V) int + type Segmented interface + GetAuthority func() string + GetFragment func() string + GetPath func() string + GetQuery func() string + GetScheme func() string + type SelectClauseLike interface + GetBlocks func() Sequential[BlockLike] + GetTarget func() Expression + SetBlocks func(blocks Sequential[BlockLike]) + SetTarget func(control Expression) + type Sequential interface + AsArray func() []V + GetSize func() int + IsEmpty func() bool + type SeriesLike interface + type SetLike interface + type Sortable interface + ReverseValues func() + ShuffleValues func() + SortValues func() + type SpectrumLike interface + type StackLike interface + type StatementLike interface + GetAnnotation func() Annotation + GetMainClause func() Clause + GetNote func() NoteLike + GetOnClause func() OnClauseLike + SetAnnotation func(annotation Annotation) + SetMainClause func(mainClause Clause) + SetNote func(note NoteLike) + SetOnClause func(onClause OnClauseLike) + type String any + type SubcomponentLike interface + GetComposite func() Expression + GetIndices func() Sequential[Expression] + SetComposite func(composite Expression) + SetIndices func(indices Sequential[Expression]) + type SymbolLike interface + type TagLike interface + type Temporal interface + AsDays func() float64 + AsHours func() float64 + AsMilliseconds func() float64 + AsMinutes func() float64 + AsMonths func() float64 + AsSeconds func() float64 + AsWeeks func() float64 + AsYears func() float64 + GetDays func() int + GetHours func() int + GetMilliseconds func() int + GetMinutes func() int + GetMonths func() int + GetSeconds func() int + GetWeeks func() int + GetYears func() int + type ThrowClauseLike interface + GetException func() Expression + SetException func(exception Expression) + type Updatable interface + SetValue func(index int, value V) + SetValues func(index int, values Sequential[V]) + type Value any + type VariableLike interface + GetIdentifier func() string + SetIdentifier func(identifier string) + type VersionLike interface + type WhileClauseLike interface + GetBlock func() BlockLike + SetBlock func(block BlockLike) + type WithClauseLike interface + GetBlock func() BlockLike + GetItem func() SymbolLike + SetBlock func(block BlockLike) + SetItem func(item SymbolLike)