Example #1
0
 public NativeSliceDebugView(NativeSlice <T> array)
 {
     this.array = array;
 }
Example #2
0
 public Enumerator(ref NativeSlice <T> array)
 {
     this.array = array;
     this.index = -1;
 }
Example #3
0
 public NativeSlice(NativeArray <T> array, int start)
 {
     this = new NativeSlice <T>(array, start, array.Length - start);
 }
Example #4
0
 public NativeSlice(NativeArray <T> array)
 {
     this = new NativeSlice <T>(array, 0, array.Length);
 }