mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
11 lines
149 B
Nim
11 lines
149 B
Nim
type
|
|
TIDGen*[A: Ordinal] = object
|
|
next: A
|
|
free: seq[A]
|
|
|
|
proc newIDGen*[A]: TIDGen[A] =
|
|
newSeq result.free, 0
|
|
|
|
var x = newIDGen[int]()
|
|
|