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
I.e. these are under generic_const_exprs which will take some time to stabilize.
Goal: find a way of re-writing those two functions without using generic_const_exprs
The text was updated successfully, but these errors were encountered:
jorgecarleitao
changed the title
Re-write from/to_bitmap without const_generics so that it is usable
Make from/to_bitmap not depend on generic_const_exprsJan 13, 2022
jorgecarleitao
changed the title
Make from/to_bitmap not depend on generic_const_exprs
Make from/to_bitmask not depend on generic_const_exprsJan 13, 2022
Another approach that fixes#223, as an alternative to #238.
This adds the `ToBitMask` trait, which is implemented on a vector for each bitmask type it supports. This includes all unsigned integers with enough bits to contain it. The byte array variant has been separated out for now into #246 and still requires `generic_const_exprs`, but the integer variants no longer require it and can make it to nightly.
I.e. these are under
generic_const_exprs
which will take some time to stabilize.Goal: find a way of re-writing those two functions without using
generic_const_exprs
The text was updated successfully, but these errors were encountered: