2023-03-09 16:44:23 -05:00

7 lines
132 B
C#

namespace Nerd_STF.Mathematics.Abstract;
public interface IIndexRangeGet<TSub>
{
public TSub[] this[Range range] { get; }
}