Before is a comparison that means: is before the (time.Time) value.
(value time.Time)
| 90 | |
| 91 | // Before is a comparison that means: is before the (time.Time) value. |
| 92 | func Before(value time.Time) *Comparison { |
| 93 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorLessThan, value)} |
| 94 | } |
| 95 | |
| 96 | // OnOrAfter is a comparison that means: is on or after the (time.Time) value. |
| 97 | func OnOrAfter(value time.Time) *Comparison { |
searching dependent graphs…