toyboot4e / ac-library-hs

[WIP] Haskell port of ac-library.
Creative Commons Zero v1.0 Universal
4 stars 0 forks source link

Naming convention #25

Closed toyboot4e closed 3 days ago

toyboot4e commented 3 days ago

Because the original ACL uses snake_case, we need our own naming convention. Here's the rough idea:

  1. Type names UpperCamel: SccGraph.

  2. Record field names Use suffix: nScc

  3. Function names lowerCamel: sccIds.

For abbreviations/acronyms, only the first character is capitalized.

toyboot4e commented 1 day ago

This is also the case with C# version of ac-library.