Next implements the Datum interface.
(_ *EvalContext)
| 1177 | |
| 1178 | // Next implements the Datum interface. |
| 1179 | func (d *DString) Next(_ *EvalContext) (Datum, bool) { |
| 1180 | return NewDString(string(Key(*d).Next())), true |
| 1181 | } |
| 1182 | |
| 1183 | // IsMax implements the Datum interface. |
| 1184 | func (*DString) IsMax(_ *EvalContext) bool { |
nothing calls this directly
no test coverage detected