NewDString is a helper routine to create a *DString initialized from its argument.
(d string)
| 1074 | // NewDString is a helper routine to create a *DString initialized from its |
| 1075 | // argument. |
| 1076 | func NewDString(d string) *DString { |
| 1077 | r := DString(d) |
| 1078 | return &r |
| 1079 | } |
| 1080 | |
| 1081 | // AsDString attempts to retrieve a DString from an Expr, returning a DString and |
| 1082 | // a flag signifying whether the assertion was successful. The function should |
no test coverage detected
searching dependent graphs…