(typ super.Type, values []float64)
| 13 | var _ Any = (*Float)(nil) |
| 14 | |
| 15 | func NewFloat(typ super.Type, values []float64) *Float { |
| 16 | return &Float{typ, values} |
| 17 | } |
| 18 | |
| 19 | func NewFloatEmpty(typ super.Type, length uint32) *Float { |
| 20 | return NewFloat(typ, make([]float64, 0, length)) |
no outgoing calls
no test coverage detected