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
Slices have a copy_within method similar to C's memmove. It could be nice to have this on ChannelMut. For LinearChannel, it's already easy enough to call .as_mut() to get a slice and use slice::copy_within on that. For InterleavedChannel, it would be trickier to implement.
The text was updated successfully, but these errors were encountered:
Slices have a copy_within method similar to C's
memmove
. It could be nice to have this on ChannelMut. For LinearChannel, it's already easy enough to call.as_mut()
to get a slice and useslice::copy_within
on that. For InterleavedChannel, it would be trickier to implement.The text was updated successfully, but these errors were encountered: