Next returns the next datum and true, if one exists, or nil and false otherwise. The next datum satisfies the following definition: if the receiver is "a" and the returned datum is "b", then for every compatible datum "x", it holds that "x > a" is true if and only if "x >= b" is true. The return va
(ctx *EvalContext)
| 115 | // weaker contract. The original filter expression is left in place to catch |
| 116 | // false positives. |
| 117 | Next(ctx *EvalContext) (Datum, bool) |
| 118 | |
| 119 | // IsMax returns true if the datum is equal to the maximum value the datum |
| 120 | // type can hold. |
no outgoing calls
no test coverage detected