Expand description
Porting Go standard library in Rust
Modules§
- encoding
encodingorhexorbase64orbase32orbinaryorascii85 - Go encoding library
- io
ioorasync-ioorpipeorasync-pipe - Go io library
- sort
sort - Go sort library
Macros§
Functions§
- copy
- Copies elements from a source slice into a destination slice. (As a special case, it also will copy bytes from a string to a slice of bytes.) The source and destination may overlap.
Copy returns the number of elements copied, which will be the minimum of
src.len()anddst.len().