`fun <F, A, B> Functor<F>.q(f: (a: A) ...
# arrow
p
fun <F, A, B> Functor<F>.q(f: (a: A) -> B): (fa: F<A>) -> F<B> = { it.map(f) }