v2 / vlib / v / tests / generics / generics_from_modules / genericmodule / take.v
8 lines · 7 sloc · 93 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1module genericmodule
2
3pub fn take[T](a bool, b T, c T) T {
4 if a {
5 return b
6 }
7 return c
8}
9