Open p-avital opened 1 year ago
For now, stabby only provides stable equivalents to a few basic types (slices, strs, vecs and strings).
This stdlib should be extended with some basic collections, locking mechanisms...
Arc<T> is currently marked as stable when T is stable because its internals are #[repr(C)]: is it also the case for Rc<T>?
Arc<T>
#[repr(C)]
Rc<T>
For now, stabby only provides stable equivalents to a few basic types (slices, strs, vecs and strings).
This stdlib should be extended with some basic collections, locking mechanisms...
Arc<T>
is currently marked as stable when T is stable because its internals are#[repr(C)]
: is it also the case forRc<T>
?