Re: Problem using sometable.keys() in this case

2019-11-25 Thread enthus1ast
keys is an iterator so either iterate over it with a for loop or use toSeq from the sequtils module

Problem using sometable.keys() in this case

2019-11-22 Thread madprops
I have this object structure: type Item* = ref object path*: string tags*: seq[string] type DB* = object data*: Data items*: OrderedTable[string, Item] var db*: DB var original_jtext: string Run I parse some json with: