NewDArray returns a DArray containing elements of the specified type.
(paramTyp *types.T)
| 1622 | |
| 1623 | // NewDArray returns a DArray containing elements of the specified type. |
| 1624 | func NewDArray(paramTyp *types.T) *DArray { |
| 1625 | return &DArray{ParamTyp: paramTyp} |
| 1626 | } |
| 1627 | |
| 1628 | // AsDArray attempts to retrieve a *DArray from an Expr, returning a *DArray and |
| 1629 | // a flag signifying whether the assertion was successful. The function should |
no outgoing calls
no test coverage detected