Why does this `proc` definition not work and how to fix it? proc testTableOptiion*[T]( collection: seq[T], table: Option[Table[T, float]] = none( Table[T, float] )): T = ... Run
This results in the error: `no generic parameters allowed for Table` or sometimes `Error: cannot instantiate: 'Table[A, B]'; Maybe generic arguments are missing?`.