You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike std::any() and std::all(), the behavior of these functions for empty streams does not seem to be documented.
Experimentally, they behave the same (for all()/try_all(), an empty iterator returns true / Ok(true); for any()/try_any(), an empty stream returns false / Ok(false)). Documentation should make it explicit.
The text was updated successfully, but these errors were encountered:
Unlike std::any() and std::all(), the behavior of these functions for empty streams does not seem to be documented.
Experimentally, they behave the same (for all()/try_all(), an empty iterator returns true / Ok(true); for any()/try_any(), an empty stream returns false / Ok(false)). Documentation should make it explicit.
The text was updated successfully, but these errors were encountered: