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
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
These are casting functions, not conversion functions. Maybe cast_to_mut, cast_from_mut, or transmut_to_mut, transmute_from_mut (seems to be an established pattern, per core::unsafe).
The text was updated successfully, but these errors were encountered:
There is also a good argument for removing the mutable variants of vectors altogether. There is little need for it, particularly as mutability is inherited through uniqueness. In other words, one can write:
C-cleanupCategory: PRs that clean code up or issues documenting cleanup.E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
These are casting functions, not conversion functions. Maybe cast_to_mut, cast_from_mut, or transmut_to_mut, transmute_from_mut (seems to be an established pattern, per core::unsafe).
The text was updated successfully, but these errors were encountered: