Closed jasonboukheir closed 3 years ago
:tada: This issue has been resolved in version 3.0.0-preview.1 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
:tada: This issue has been resolved in version 3.0.0 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Some
IEnumerator
implementations forISequence
rely on aNativeContainer
field that isn't instantiated until the first timeMoveNext()
is called. This causes an exception when trying to run the job with Burst.ISequence
should instead inherit fromIEnumerable
, and should construct the correspondingIEnumerator
.This will cause an API change, because
ValueSequence<T, TSource>
now needs a third generic argument,TEnumerator
.