Search Results for

    Show / Hide Table of Contents

    Class ObjectIntrinsics.Operators

    A collection of names for object-oriented operations.

    Inheritance
    object
    ObjectIntrinsics.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 ObjectIntrinsics.Operators

    Fields

    | Edit this page View Source

    All

    An immutable array containing all standard object-oriented intrinsics.

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

    UnboxAny

    The 'unbox_any' operator. Its return type can either be a value type or a reference type (aka box pointer). If its return type is set to a value type, 'unbox_any' unboxes its argument and loads it. If 'unbox_any's return value is set to a reference type, 'unbox_any' checks that its argument is a subtype of the return type.

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