NewDString is a helper routine to create a *DString initialized from its argument.
(d string)
| 1197 | // NewDString is a helper routine to create a *DString initialized from its |
| 1198 | // argument. |
| 1199 | func NewDString(d string) *DString { |
| 1200 | r := DString(d) |
| 1201 | return &r |
| 1202 | } |
| 1203 | |
| 1204 | // AsDString attempts to retrieve a DString from an Expr, returning a DString and |
| 1205 | // a flag signifying whether the assertion was successful. The function should |
no test coverage detected
searching dependent graphs…