Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 225 Bytes

File metadata and controls

10 lines (8 loc) · 225 Bytes

Naming

Type variables don't have to be only a single letter, though that is common. If you pick a longer name you are generally expected to name them as if they were classes.

class Box<Data> {
    Data data;
}