mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-06-01 23:29:38 +02:00
6 lines
155 B
Markdown
6 lines
155 B
Markdown
# Generics
|
|
|
|
Rust support generics, which lets you abstract algorithms or data structures
|
|
(such as sorting or a binary tree)
|
|
over the types used or stored.
|