namespace Ryujinx.Common.Memory
{
///
/// Array interface.
///
/// Element type
public interface IArray where T : unmanaged
{
///
/// Used to index the array.
///
/// Element index
/// Element at the specified index
ref T this[int index] { get; }
///
/// Number of elements on the array.
///
int Length { get; }
}
}