lol no futures

This commit is contained in:
nora 2022-11-20 22:07:03 +01:00
parent a226e71cde
commit 51388a90af
No known key found for this signature in database

View file

@ -25,14 +25,6 @@ mod fut {
pub trait Stream {
type Item;
fn map<T, F>(self, f: F) -> Map<F>
where
F: FnMut(Self::Item) -> T,
Self: Sized,
{
loop {}
}
fn for_each<Fut, F>(self, f: F) -> ForEach<Self, Fut, F>
where
F: FnMut(Self::Item) -> Fut,