Rename type_union_tag to type_union_tag_type

This commit is contained in:
jakubtomsu
2023-10-25 20:23:24 +02:00
parent 2f8d60ec47
commit 625cb03284
4 changed files with 277 additions and 5 deletions
+2 -2
View File
@@ -164,9 +164,9 @@ 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_type :: 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_type_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 ---