<PackageReference Include="Relativity.OutsideIn" Version="2022.11.0" />

ReadOnlyMemory<T>

public struct ReadOnlyMemory<T>
public static ReadOnlyMemory<T> Empty { get; }

public bool IsEmpty { get; }

public int Length { get; }

public ReadOnlySpan<T> Span { get; }

public ReadOnlyMemory(T[] array)

public ReadOnlyMemory(T[] array, int start, int length)

public static ReadOnlyMemory<T> op_Implicit(T[] array)

public static ReadOnlyMemory<T> op_Implicit(ArraySegment<T> segment)

public void CopyTo(Memory<T> destination)

public bool Equals(ReadOnlyMemory<T> other)

public MemoryHandle Pin()

public ReadOnlyMemory<T> Slice(int start)

public ReadOnlyMemory<T> Slice(int start, int length)

public T[] ToArray()

public bool TryCopyTo(Memory<T> destination)