After is a comparison that means: is after the (time.Time) value.
(value time.Time)
| 85 | |
| 86 | // After is a comparison that means: is after the (time.Time) value. |
| 87 | func After(value time.Time) *Comparison { |
| 88 | return &Comparison{adapter.NewComparisonOperator(adapter.ComparisonOperatorGreaterThan, value)} |
| 89 | } |
| 90 | |
| 91 | // Before is a comparison that means: is before the (time.Time) value. |
| 92 | func Before(value time.Time) *Comparison { |
searching dependent graphs…