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
Box<[T]> falls out from DST so should work, and mostly it does. Unfortunately, the code for reflecting it got torn out before DST landed and I don't want to delay landing DST any longer for an unpopular feature on an unpopular type. This should be easy to fix.
OTOH, reflection of unsized values doesn't work due to an implementation choice in reflection, so making Smaht<[T]> will be harder to fix, as would doing Box<[T]> properly.
All this probably applies equally to Box<str> too.
The text was updated successfully, but these errors were encountered:
Box<[T]>
falls out from DST so should work, and mostly it does. Unfortunately, the code for reflecting it got torn out before DST landed and I don't want to delay landing DST any longer for an unpopular feature on an unpopular type. This should be easy to fix.OTOH, reflection of unsized values doesn't work due to an implementation choice in reflection, so making
Smaht<[T]>
will be harder to fix, as would doingBox<[T]>
properly.All this probably applies equally to
Box<str>
too.The text was updated successfully, but these errors were encountered: