Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAdd support for `RefBox<'a, [T]>` and `RefBox<'a, str>` #34
Comments
|
I'm not familiar with boxed unsized types. How does one go about making and using Box and Box<[T]>? |
|
|
|
You could also solve this issue with specific |
|
#37 Will close this issue once I add tests. |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These are useful for conservatively serializing
&strand&[T]then deserializing toBox<str>andBox<[T]>, which are analogous toStringandVec<u8>.