summaryrefslogtreecommitdiffstats
path: root/src/failable/filter.rs
AgeCommit message (Collapse)Author
2022-08-09cargo-fix for editionMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2022-08-09Use anonymous variable name to silence warningsMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2022-08-09Format codeMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-04-24Fix: Remove unused variableMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2018-04-29Make error type associatedMatthias Beyer
The problem with the FailingFilter was, that the error type was not an associated type but a generic type parameter. This patch fixes this.
2017-10-05Add tests where both filter types are usedMatthias Beyer
2017-10-03Lessen restriction for Result second type paramMatthias Beyer
Before we had the restriction that the Err(_) part of the Result must be an Error, but as Result itself does not have such a bound, we remove ours as well.
2017-10-03Merge pull request #21 from PlasmaPower/filter-mapMatthias Beyer
Add filter map functions
2017-10-03Fix typoMatthias Beyer
2017-10-02Add filter map functionsLee Bousfield
2017-10-01Add more testsMatthias Beyer
2017-10-01Adapt documentation-testsMatthias Beyer
2017-10-01Add compiletetsMatthias Beyer
2017-10-01Implement FailableFilter for all closuresMatthias Beyer
2017-10-01Add failable filter infrastructureMatthias Beyer