2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-04-06 16:36:40 +00:00

Narrow the disclosure range of FlatMap::new

Co-Authored-By: Taiki Endo <te316e89@gmail.com>
This commit is contained in:
nasa 2019-10-27 12:35:14 +09:00 committed by GitHub
parent 61b7a09c70
commit 13a08b0d54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ where
U: IntoStream,
F: FnMut(S::Item) -> U,
{
pub fn new(stream: S, f: F) -> FlatMap<S, U, S::Item, F> {
pub(super) fn new(stream: S, f: F) -> FlatMap<S, U, S::Item, F> {
FlatMap {
inner: FlattenCompat::new(stream.map(f)),
}