Not sets the next coming predicate with not.
()
| 2000 | |
| 2001 | // Not sets the next coming predicate with not. |
| 2002 | func (s *Selector) Not() *Selector { |
| 2003 | s.not = true |
| 2004 | return s |
| 2005 | } |
| 2006 | |
| 2007 | // Or sets the next coming predicate with OR operator (disjunction). |
| 2008 | func (s *Selector) Or() *Selector { |