False appends FALSE to the predicate.
()
| 789 | |
| 790 | // False appends FALSE to the predicate. |
| 791 | func (p *Predicate) False() *Predicate { |
| 792 | return p.Append(func(b *Builder) { |
| 793 | b.WriteString("FALSE") |
| 794 | }) |
| 795 | } |
| 796 | |
| 797 | // Not wraps the given predicate with the not predicate. |
| 798 | // |