DEV Community

Cover image for Type checking in Go – alternative approach
Lukas Gaucas
Lukas Gaucas

Posted on

Type checking in Go – alternative approach

Instead of reflect.Valueof(<variable>).Kind() we can think about implementing this _switch wrapper :

NOTE: I cannot ensure which is better, but thumb of rule is baked-in features should be faster, more efficient ? – Remains a question . Still as alternative approach consider the following :

Top comments (0)