Update README.md

This commit is contained in:
Yung Beef 4.2 2024-07-02 18:30:54 -03:00 committed by GitHub
parent 18a9a2e791
commit fa452b3a93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
# Generics # Generics
Generics is the topic of generalizing types and functionalities to broader cases. Generics is the topic of generalizing types and functionalities to broader cases.
This is extremely useful for reducing code duplication in many ways, but can call for rather involving syntax. This is extremely useful for reducing code duplication in many ways, but can call for some rather involved syntax.
Namely, being generic requires taking great care to specify over which types a generic type is actually considered valid. 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. The simplest and most common use of generics is for type parameters.