UI Tookit UI Tookit
UI Tookit UI Tookit
DocFX + Singulink = ♥

Search Results for

    Operator implicit operator

    implicit operator ValueList<T>(ImmutableArray<T>)

    Converts an ImmutableArray<T> to a ValueList<T> without copying.

    Declaration
    public static implicit operator ValueList<T>(ImmutableArray<T> items)
    Parameters
    Type Name Description
    ImmutableArray<T> items
    Returns
    Type Description
    ValueList<T>

    implicit operator ImmutableArray<T>(ValueList<T>)

    Converts a ValueList<T> to an ImmutableArray<T> without copying.

    Declaration
    public static implicit operator ImmutableArray<T>(ValueList<T> list)
    Parameters
    Type Name Description
    ValueList<T> list
    Returns
    Type Description
    ImmutableArray<T>

    implicit operator ReadOnlySpan<T>(ValueList<T>)

    Converts a ValueList<T> to a ReadOnlySpan<T> without copying.

    Declaration
    public static implicit operator ReadOnlySpan<T>(ValueList<T> list)
    Parameters
    Type Name Description
    ValueList<T> list
    Returns
    Type Description
    ReadOnlySpan<T>

    implicit operator ReadOnlyMemory<T>(ValueList<T>)

    Converts a ValueList<T> to a ReadOnlyMemory<T> without copying.

    Declaration
    public static implicit operator ReadOnlyMemory<T>(ValueList<T> list)
    Parameters
    Type Name Description
    ValueList<T> list
    Returns
    Type Description
    ReadOnlyMemory<T>
    © Singulink. All rights reserved.