1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-31 09:42:11 +02:00

5 lines
128 B
Markdown
Raw Normal View History

2022-12-21 16:36:30 +01:00
# Generics
Rust support generics, which lets you abstract an algorithm (such as sorting)
over the types used in the algorithm.