func newSampleKeyList(cap int) *sampleKeyList { return &sampleKeyList{ l: utility.NewFreeList(cap), } }
func newDtoSampleKeyList(cap int) *dtoSampleKeyList { return &dtoSampleKeyList{ l: utility.NewFreeList(cap), } }
func newValueAtTimeList(cap int) *valueAtTimeList { return &valueAtTimeList{ l: utility.NewFreeList(cap), } }
func newValueAtIntervalAlongRangeList(cap int) *valueAtIntervalAlongRangeList { return &valueAtIntervalAlongRangeList{ l: utility.NewFreeList(cap), } }
func newBufferList(cap int) *bufferList { return &bufferList{ l: utility.NewFreeList(cap), } }