diff options
Diffstat (limited to 'tests/fields/tfieldindex.nim')
-rw-r--r-- | tests/fields/tfieldindex.nim | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/fields/tfieldindex.nim b/tests/fields/tfieldindex.nim new file mode 100644 index 000000000..f0674af54 --- /dev/null +++ b/tests/fields/tfieldindex.nim @@ -0,0 +1,21 @@ +discard """ + output: "1" +""" + +type + TMyTuple = tuple[a, b: int] + +proc indexOf*(t: typedesc, name: string): int = + ## takes a tuple and looks for the field by name. + ## returs index of that field. + var + d: t + i = 0 + for n, x in fieldPairs(d): + if n == name: return i + i.inc + raise newException(EInvalidValue, "No field " & name & " in type " & + astToStr(t)) + +echo TMyTuple.indexOf("b") + |