nim-stew/std_shims/tables_shims.nim

6 lines
116 B
Nim

import tables, objects
template init*[A, B](T: type Table[A, B]): auto = initTable[A, B]()
export tables, objects