Esempio n. 1
0
func NewTList(t TType, s int) TList {
	var v vector.Vector
	return &tList{elemType: t, l: v.Resize(0, s)}
}