You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This works towards #68, but we should have a const-variant of the existing WakerList. Probably one way to do it would be to separate it by name: e.g. WakerVec (dynamic size) vs WakerArray (static size). This would make PRs like #75 faster and not rely on allocations.
The text was updated successfully, but these errors were encountered:
This should be a fairly straighforward copying of files, renaming some types, and doing a switch from Vec to using const-generics. It doesn't require any async-specific knowledge, and should be fairly straighforward to do!
This works towards #68, but we should have a const-variant of the existing
WakerList
. Probably one way to do it would be to separate it by name: e.g.WakerVec
(dynamic size) vsWakerArray
(static size). This would make PRs like #75 faster and not rely on allocations.The text was updated successfully, but these errors were encountered: