NewDArray returns a DArray containing elements of the specified type.
(paramTyp *types.T)
| 3304 | |
| 3305 | // NewDArray returns a DArray containing elements of the specified type. |
| 3306 | func NewDArray(paramTyp *types.T) *DArray { |
| 3307 | return &DArray{ParamTyp: paramTyp} |
| 3308 | } |
| 3309 | |
| 3310 | // AsDArray attempts to retrieve a *DArray from an Expr, returning a *DArray and |
| 3311 | // a flag signifying whether the assertion was successful. The function should |
no outgoing calls
no test coverage detected
searching dependent graphs…