NewDArray returns a DArray containing elements of the specified type.
(paramTyp *types.T)
| 4989 | |
| 4990 | // NewDArray returns a DArray containing elements of the specified type. |
| 4991 | func NewDArray(paramTyp *types.T) *DArray { |
| 4992 | return &DArray{ParamTyp: paramTyp} |
| 4993 | } |
| 4994 | |
| 4995 | // AsDArray attempts to retrieve a *DArray from an Expr, returning a *DArray and |
| 4996 | // a flag signifying whether the assertion was successful. The function should |
no outgoing calls
no test coverage detected
searching dependent graphs…