public NativeSlice(NativeArray <T> array, int start) { this = new NativeSlice <T>(array, start, array.Length - start); }
public NativeSlice(NativeArray <T> array) { this = new NativeSlice <T>(array, 0, array.Length); }