(typ super.Type, v float64, length uint32)
| 26 | return &Const{vec, length} |
| 27 | } |
| 28 | func NewConstFloat(typ super.Type, v float64, length uint32) *Const { |
| 29 | vec := NewFloat(typ, []float64{v}) |
| 30 | return &Const{vec, length} |
| 31 | } |
| 32 | |
| 33 | var ( |
| 34 | falseVec = NewFalse(1) |
no test coverage detected