Is there any way around recursive typealias expans...
# announcements
r
Is there any way around recursive typealias expansion? It would be really nice to be able to do
Copy code
typealias Interceptor<T, U> = (Store<T, U>, U, Interceptor<T, U>) -> Unit
so I can still use standard functional types.