mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-10-03 04:15:51 -05:00
Move solution and projects to src
This commit is contained in:
21
src/Ryujinx.Common/Memory/IArray.cs
Normal file
21
src/Ryujinx.Common/Memory/IArray.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Ryujinx.Common.Memory
|
||||
{
|
||||
/// <summary>
|
||||
/// Array interface.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">Element type</typeparam>
|
||||
public interface IArray<T> where T : unmanaged
|
||||
{
|
||||
/// <summary>
|
||||
/// Used to index the array.
|
||||
/// </summary>
|
||||
/// <param name="index">Element index</param>
|
||||
/// <returns>Element at the specified index</returns>
|
||||
ref T this[int index] { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Number of elements on the array.
|
||||
/// </summary>
|
||||
int Length { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user