Concept Flow - Reified type parameters with inline
Call inline function with reified type T
Compiler keeps type info of T
Use type T inside function (e.g., is, class check)
Function executes with real type info
Return or print result based on T
The inline function keeps the actual type T at runtime, allowing type checks and casts inside the function.