Add tests

This commit is contained in:
Данил
2025-07-28 20:09:18 +07:00
parent 4bbfad8f1f
commit 9676da8861
27 changed files with 408 additions and 1 deletions
+11
View File
@@ -1,2 +1,13 @@
# Fast-RTTI
This library implements fast RTTI for C++.
Tests:
[Direct type casting]
dynami_cast: 202ms
RTTI::dyn_cast: 54ms
[Possible type casting]
dynami_cast: 193ms
RTTI::dyn_cast: 41ms
[Not possible type casting]
dynami_cast: 489ms
RTTI::dyn_cast: 43ms