Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-17 | AK: Publish all_of() | Andreas Kling | |
2020-12-20 | AllOf: Common iterator types | Lenny Maiorani | |
Problem: - Interface is too permissive. It permits iterators of different types as long as they are comparable. Solution: - Require iterators be the same type. | |||
2020-11-21 | AK: Implement generic all_of algorithm | Lenny Maiorani | |
Problem: - Raw loops are often written to validate that all values in a container meet a predicate, but raw loops are not as expressive as functions implementing well-named algorithms and are error-prone. Solution: - Implement a very generic form of `all_of`. |