Change naming convention from Ada_Like to RustLike

Naming Conventions:
In general, PascalCase for types and snake_case for values

Import Name:        snake_case (but prefer single word)
Types:              PascalCase
Union Variants:     PascalCase
Enum Values:        PascalCase
Procedures:         snake_case
Local Variables:    snake_case
Constant Variables: SCREAMING_SNAKE_CASE
This commit is contained in:
Ginger Bill
2017-05-28 14:47:11 +01:00
parent b41f09b730
commit 80c034ec7c
13 changed files with 374 additions and 362 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
Any :: struct #ordered {
data: rawptr,
type_info: ^Type_Info,
type_info: ^TypeInfo,
}
String :: struct #ordered {
@@ -14,14 +14,14 @@ Slice :: struct #ordered {
cap: int,
};
Dynamic_Array :: struct #ordered {
DynamicArray :: struct #ordered {
data: rawptr,
len: int,
cap: int,
allocator: Allocator,
};
Dynamic_Map :: struct #ordered {
DynamicMap :: struct #ordered {
hashes: [dynamic]int,
entries: Dynamic_Array,
entries: DynamicArray,
};