And users instead of doing things like: ``` listOf...
# arrow-contributors
r
And users instead of doing things like:
Copy code
listOf(Option(1), Option(2)).traverse(::identity, Option.applicative())
they'd be able to just do:
Copy code
import OptionApplicative

listOf(Option(1), Option(2)).traverse(::identity)