You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is actually **desirable** to use meaningful names when there are multiple type parameters at play or when the name
161
161
`T` doesn't convey enough information about the type's role in the function.
162
162
Maximize clarity and readability when naming type parameters, just as you would with variables or function parameters.
163
-
Follow Rust's conventions though: use camel case for type parameter names.
163
+
Follow Rust's conventions, though: use [upper camel case for type parameter names](https://rust-lang.github.io/api-guidelines/naming.html#casing-conforms-to-rfc-430-c-case).
0 commit comments