1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-18 05:37:52 +02:00

Mention generic data structures as well as algorithms (#908)

generics: mention generic data structures as well as algorithms
This commit is contained in:
Frances Wingerter 2023-07-06 08:39:28 +00:00 committed by GitHub
parent 4413b6a28f
commit a290a18065
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
# Generics
Rust support generics, which lets you abstract an algorithm (such as sorting)
over the types used in the algorithm.
Rust support generics, which lets you abstract algorithms or data structures
(such as sorting or a binary tree)
over the types used or stored.