NewDTupleWithLen creates a *DTuple with the provided length.
(typ *types.T, l int)
| 4531 | |
| 4532 | // NewDTupleWithLen creates a *DTuple with the provided length. |
| 4533 | func NewDTupleWithLen(typ *types.T, l int) *DTuple { |
| 4534 | return &DTuple{D: make(Datums, l), typ: typ} |
| 4535 | } |
| 4536 | |
| 4537 | // MakeDTuple creates a DTuple with the provided datums. See NewDTuple. |
| 4538 | func MakeDTuple(typ *types.T, d ...Datum) DTuple { |
no outgoing calls
no test coverage detected
searching dependent graphs…