clarify all_errors

This commit is contained in:
AF 2023-08-07 17:05:46 +00:00
parent 3f27099e17
commit e9a771de0a

View File

@ -1,5 +1,8 @@
# Report all errors (or only the first error)
- `only_positive(..., first())` should short-circuit on first non-positive number.
- `only_positive(..., all())` must collect all non-positive numbers.
```rust
# trait Collects {
# type Error;