IsMin implements the Datum interface.
(ctx *EvalContext)
| 3063 | |
| 3064 | // IsMin implements the Datum interface. |
| 3065 | func (d *DTuple) IsMin(ctx *EvalContext) bool { |
| 3066 | for _, v := range d.D { |
| 3067 | if !v.IsMin(ctx) { |
| 3068 | return false |
| 3069 | } |
| 3070 | } |
| 3071 | return true |
| 3072 | } |
| 3073 | |
| 3074 | // AmbiguousFormat implements the Datum interface. |
| 3075 | func (*DTuple) AmbiguousFormat() bool { return false } |