2021-04-23 20:54:31 +03:00
|
|
|
# Generics
|
2020-02-28 03:09:08 +03:00
|
|
|
|
2021-04-23 20:54:31 +03:00
|
|
|
Generics is the topic of generalizing types and functionalities to broader cases.
|
2024-07-03 00:30:54 +03:00
|
|
|
This is extremely useful for reducing code duplication in many ways, but can call for some rather involved syntax.
|
2021-04-23 20:54:31 +03:00
|
|
|
Namely, being generic requires taking great care to specify over which types a generic type is actually considered valid.
|
|
|
|
The simplest and most common use of generics is for type parameters.
|
2020-02-28 03:09:08 +03:00
|
|
|
|
2021-04-23 20:54:31 +03:00
|
|
|
## Further information
|
2020-02-28 03:09:08 +03:00
|
|
|
|
2024-07-08 17:00:12 +03:00
|
|
|
- [Generic Data Types](https://doc.rust-lang.org/book/ch10-01-syntax.html)
|
2021-04-22 23:11:04 +03:00
|
|
|
- [Bounds](https://doc.rust-lang.org/rust-by-example/generics/bounds.html)
|