WeakFunctorAny

This commit is contained in:
AF 2023-05-30 18:02:05 +00:00
parent b4051ba32c
commit d430fd9dca

View File

@ -2,13 +2,13 @@
Current: Current:
```rust ```rust
pub trait WeakFunctorA<'a>: 'a { pub trait WeakFunctorAny {
type F<A: 'a>: 'a;
}
pub trait WeakFunctor {
type F<'a, A: 'a>: 'a type F<'a, A: 'a>: 'a
where where
Self: 'a; Self: 'a;
} }
pub trait WeakFunctor<'a>: 'a {
type F<A: 'a>: 'a;
}
``` ```