nim-stew/stew/shims/tables.nim

6 lines
123 B
Nim
Raw Normal View History

2019-07-07 09:38:00 +00:00
import std/tables, ../objects
template init*[A, B](T: type Table[A, B]): auto = initTable[A, B]()
export tables, objects