Add intrinsics type_is_matrix_row_major & type_is_matrix_column_major

This commit is contained in:
gingerBill
2024-05-20 10:15:21 +01:00
parent 8eb7fe1859
commit 5473758467
3 changed files with 37 additions and 0 deletions
+3
View File
@@ -167,6 +167,9 @@ type_is_matrix :: proc($T: typeid) -> bool ---
type_has_nil :: proc($T: typeid) -> bool ---
type_is_matrix_row_major :: proc($T: typeid) -> bool where type_is_matrix(T) ---
type_is_matrix_column_major :: proc($T: typeid) -> bool where type_is_matrix(T) ---
type_is_specialization_of :: proc($T, $S: typeid) -> bool ---
type_is_variant_of :: proc($U, $V: typeid) -> bool where type_is_union(U) ---