1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-13 12:56:27 +02:00
comprehensive-rust/src/generics.md

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.