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