Search Results for

    Show / Hide Table of Contents

    Class ArrayIntrinsics.Operators

    A collection of names for array operations.

    Inheritance
    object
    ArrayIntrinsics.Operators
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Flame.Compiler.Instructions
    Assembly: Flame.Compiler.dll
    Syntax
    public static class ArrayIntrinsics.Operators

    Fields

    | Edit this page View Source

    All

    An immutable array containing all standard array intrinsics.

    Declaration
    public static readonly ImmutableArray<string> All
    Field Value
    Type Description
    ImmutableArray<string>
    | Edit this page View Source

    GetElementPointer

    The 'get_element_pointer' operator, which indexes an array and produces a reference to the indexed array element.

    Declaration
    public const string GetElementPointer = "get_element_pointer"
    Field Value
    Type Description
    string
    | Edit this page View Source

    GetLength

    The 'get_length' operator, which computes the number of elements in an array.

    Declaration
    public const string GetLength = "get_length"
    Field Value
    Type Description
    string
    | Edit this page View Source

    LoadElement

    The 'load_element' operator, which indexes an array and loads the indexed array element.

    Declaration
    public const string LoadElement = "load_element"
    Field Value
    Type Description
    string
    | Edit this page View Source

    NewArray

    The 'new_array' operator, which allocates a new array of a particular size.

    Declaration
    public const string NewArray = "new_array"
    Field Value
    Type Description
    string
    | Edit this page View Source

    StoreElement

    The 'store_element' operator, which indexes an array and updates the indexed array element.

    Declaration
    public const string StoreElement = "store_element"
    Field Value
    Type Description
    string
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX