Studly capitals

From HaskellWiki
Revision as of 16:44, 10 October 2006 by BrettGiles (talk | contribs) (HaWiki conversion)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This is a convention for naming identifiers, where the identifer starts with a capital letter and words begin with capital letters and are not separated by underscores. So, for example, one would use SomeMultiWordName.

Note that due to Haskell syntax, this would imply the identfier is a type, constructor or class name.

See also: Camel case