Concept Flow - Generic function syntax
Define generic function with <T>
Call function with specific type
Function uses type T inside
Return value of type T
End
This flow shows how a generic function is defined with a type placeholder T, then called with a specific type, uses that type inside, and returns a value of that type.