Recovered comments

split-by-pattern
Oleg Nosov 5 years ago
parent 83afbab2ef
commit fb567a3a09
No known key found for this signature in database
GPG Key ID: DE90B83800644E24

@ -24,6 +24,7 @@ where
.take_while(|elem| {
elem.is_some() || {
found_none = true;
// Stop processing the stream on `None`
false
}
})

@ -48,6 +48,7 @@ where
.take_while(|elem| {
elem.is_some() || {
found_none = true;
// Stop processing the stream on `None`
false
}
})

@ -43,6 +43,7 @@ where
.take_while(|elem| {
elem.is_some() || {
found_none = true;
// Stop processing the stream on error
false
}
})

Loading…
Cancel
Save