SemPtr SemPtr
SemPtr SemPtr
Documentation generated with DocFX
Using SingulinkFX as the template

Search Results for

    Method FromRaw

    FromRaw(T*)

    Creates a NullablePointer<T> from a raw pointer.

    Declaration
    public static NullablePointer<T> FromRaw(T* raw)
    Parameters
    Type Name Description
    T* raw

    The raw pointer specifying the target that the resulting NullablePointer<T> will point to.

    Returns
    Type Description
    NullablePointer<T>

    A NullablePointer<T> that points to the same target as the specified raw pointer.

    Implements
    ITypedPointer<T, TSelf>.FromRaw(T*)
    Remarks

    The raw pointer may be null. If it is, the resulting NullablePointer<T> will represent a null pointer.

    The resulting NullablePointer<T> will point to the same target as raw.

    © 2026 Felix Rüdiger. SemPtr and its documentation are licensed under the MIT license.