Beispiel #1
0
 public ToNativeArrayJob(ValueSequence <T, TSource, TSourceEnumerator> seq, NativeArray <T> output)
 {
     this.seq    = seq;
     this.output = output;
 }
Beispiel #2
0
 public SequenceToNativeHashSetJob(ValueSequence <T, TSource, TSourceEnumerator> source, ref NativeHashSet <T> hashSet)
 {
     this.source  = source;
     this.hashSet = hashSet;
 }
Beispiel #3
0
 public T Invoke(ValueSequence <T, TSource, TSourceEnumerator> arg0)
 {
     return(arg0.ElementAt(Index));
 }