()
| 3151 | return new Filter(this.run, { ...this.annotations, ...annotations }, this.aborted) |
| 3152 | } |
| 3153 | abort(): Filter<E> { |
| 3154 | return new Filter(this.run, this.annotations, true) |
| 3155 | } |
| 3156 | and(other: Check<E>, annotations?: Schema.Annotations.Filter): FilterGroup<E> |
| 3157 | and(other: Check<E>, annotations?: Schema.Annotations.Filter): FilterGroup<E> { |
| 3158 | return new FilterGroup([this, other], annotations) |
no outgoing calls
no test coverage detected