1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-29 21:57:42 +02:00
comprehensive-rust/src/generics.md

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.