1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-07 18:16:15 +02:00

6 lines
155 B
Markdown
Raw Normal View History

2022-12-21 16:36:30 +01:00
# 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.