1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-28 13:17:35 +02:00
comprehensive-rust/src/generics.md
Frances Wingerter a290a18065
Mention generic data structures as well as algorithms (#908)
generics: mention generic data structures as well as algorithms
2023-07-06 08:39:28 +00:00

155 B

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.