3

This side question bothers me: Has_This_Case_A_Name?


Here is what I could find, but This_Case_Is_Missing:

+---------------------------------------+---------------+
|                 Names                 |    Example    |
+---------------------------------------+---------------+
| camelCase, lowerCamelCase             | thisIsACat    |
| UpperCamelCase, PascalCase, BumpyCase | ThisIsACat    |
+---------------------------------------+---------------+
| kebab-case, spinal-case, lisp-case    | this-is-a-cat |
| COBOL-CASE                            | THIS-IS-A-CAT |
| Train-Case                            | This-Is-A-Cat |
+---------------------------------------+---------------+
| snake_case                            | this_is_a_cat |
| SCREAMING_SNAKE_CASE, MACRO_CASE      | THIS_IS_A_CAT |
| ???                                   | This_Is_A_Cat |
+---------------------------------------+---------------+

Sources:

sp00m
  • 640
  • 4
  • 11

1 Answers1

7

This case is used in the programming language ADA:

WikiWand - Naming Convention # ADA

This convention is known as Mixed_Case_With_Underscores or Ada_Case.

TheCatWhisperer
  • 5,231
  • 1
  • 22
  • 41