Naming, use variant index instead of tag

This commit is contained in:
jakubtomsu
2023-10-24 22:15:33 +02:00
parent 16c176dc89
commit c76ab138eb
2 changed files with 9 additions and 4 deletions
+5
View File
@@ -162,7 +162,12 @@ type_is_matrix :: proc($T: typeid) -> bool ---
type_has_nil :: proc($T: typeid) -> bool ---
type_is_specialization_of :: proc($T, $S: typeid) -> bool ---
type_is_variant_of :: proc($U, $V: typeid) -> bool where type_is_union(U) ---
type_union_tag :: proc($U: typeid) -> typeid where type_is_union(U) ---
type_union_tag_offset :: proc($U: typeid) -> int where type_is_union(U) ---
type_variant_type_of_of :: proc($U: typeid, $index: int) -> typeid where type_is_union(U) ---
type_variant_index_of :: proc($U, $V: typeid) -> int where type_is_union(U) ---
type_has_field :: proc($T: typeid, $name: string) -> bool ---
type_field_type :: proc($T: typeid, $name: string) -> typeid ---