Traversable type class #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
Type classes for traversing collections. The concepts and laws are taken from http://hackage.haskell.org/package/base-4.11.1.0/docs/Data-Traversable.html
Traversable collections are a generalization of functors. Whereas
functors (such as list
) allow us to apply a function to every
element, it does not allow functions which external effects encoded in
a monad. Consider for instance a functor invite : email → io response
that takes an email address, sends an email and waits for a
response. If we have a list guests : list email
, using calling
invite
using map
gives us the following: map invite guests : list (io response)
. It is not what we need. We need something of type io (list response)
. Instead of using map
, we can use traverse
to
send all the invites: traverse invite guests : io (list response)
.
traverse
applies invite
to every element of guests
and combines
all the resulting effects. In the example, the effect is encoded in the
monad io
but any applicative functor is accepted by traverse
.
For more on how to use traversable, consider the Haskell tutorial: https://en.wikibooks.org/wiki/Haskell/Traversable
Main definitions #
traversable
type class - exposes thetraverse
functionsequence
- based ontraverse
, turns a collection of effects into an effect returning a collectionis_lawful_traversable
- laws for a traversable functorapplicative_transformation
- the notion of a natural transformation for applicative functors
Tags #
traversable iterator functor applicative
References #
- "Applicative Programming with Effects", by Conor McBride and Ross Paterson, Journal of Functional Programming 18:1 (2008) 1-13, online at http://www.soi.city.ac.uk/~ross/papers/Applicative.html
- "The Essence of the Iterator Pattern", by Jeremy Gibbons and Bruno Oliveira, in Mathematically-Structured Functional Programming, 2006, online at http://web.comlab.ox.ac.uk/oucl/work/jeremy.gibbons/publications/#iterator
- "An Investigation of the Laws of Traversals", by Mauro Jaskelioff and Ondrej Rypacek, in Mathematically-Structured Functional Programming, 2012, online at http://arxiv.org/pdf/1202.2919
- app : Π (α : Type ?), F α → G α
- preserves_pure' : ∀ {α : Type ?} (x : α), self.app α (has_pure.pure x) = has_pure.pure x
- preserves_seq' : ∀ {α β : Type ?} (x : F (α → β)) (y : F α), self.app β (x <*> y) = self.app (α → β) x <*> self.app α y
A transformation between applicative functors. It is a natural
transformation such that app
preserves the has_pure.pure
and
functor.map
(<*>
) operations. See
applicative_transformation.preserves_map
for naturality.
Instances for applicative_transformation
- applicative_transformation.has_sizeof_inst
- applicative_transformation.has_coe_to_fun
- applicative_transformation.inhabited
Equations
- applicative_transformation.has_coe_to_fun F G = {coe := applicative_transformation.app _inst_4}
The identity applicative transformation from an applicative functor to itself.
Equations
- applicative_transformation.id_transformation = {app := λ (α : Type u), id, preserves_pure' := _, preserves_seq' := _}
Equations
The composition of applicative transformations.
Equations
- η'.comp η = {app := λ (α : Type u) (x : F α), ⇑η' (⇑η x), preserves_pure' := _, preserves_seq' := _}
- to_functor : functor t
- traverse : Π {m : Type ? → Type ?} [_inst_1 : applicative m] {α β : Type ?}, (α → m β) → t α → m (t β)
A traversable functor is a functor along with a way to commute
with all applicative functors (see sequence
). For example, if t
is the traversable functor list
and m
is the applicative functor
io
, then given a function f : α → io β
, the function functor.map f
is
list α → list (io β)
, but traverse f
is list α → io (list β)
.
Instances of this typeclass
- bitraversable.traversable
- id.traversable
- option.traversable
- list.traversable
- sum.traversable
- tactic.interactive.ac_mono_ctx'.traversable
- vector.flip.traversable
- lazy_list.traversable
- buffer.traversable
- array.traversable
- free_magma.traversable
- free_add_magma.traversable
- free_semigroup.traversable
- free_add_semigroup.traversable
- dlist.traversable
Instances of other typeclasses for traversable
- traversable.has_sizeof_inst
- to_is_lawful_functor : is_lawful_functor t
- id_traverse : ∀ {α : Type ?} (x : t α), traversable.traverse id.mk x = x
- comp_traverse : ∀ {F G : Type ? → Type ?} [_inst_1_1 : applicative F] [_inst_2 : applicative G] [_inst_3 : is_lawful_applicative F] [_inst_4 : is_lawful_applicative G] {α β γ : Type ?} (f : β → F γ) (g : α → G β) (x : t α), traversable.traverse (functor.comp.mk ∘ functor.map f ∘ g) x = functor.comp.mk (traversable.traverse f <$> traversable.traverse g x)
- traverse_eq_map_id : ∀ {α β : Type ?} (f : α → β) (x : t α), traversable.traverse (id.mk ∘ f) x = id.mk (f <$> x)
- naturality : ∀ {F G : Type ? → Type ?} [_inst_1_1 : applicative F] [_inst_2 : applicative G] [_inst_3 : is_lawful_applicative F] [_inst_4 : is_lawful_applicative G] (η : applicative_transformation F G) {α β : Type ?} (f : α → F β) (x : t α), ⇑η (traversable.traverse f x) = traversable.traverse (⇑η ∘ f) x
A traversable functor is lawful if its traverse
satisfies a
number of additional properties. It must send id.mk
to id.mk
,
send the composition of applicative functors to the composition of the
traverse
of each, send each function f
to λ x, f <$> x
, and
satisfy a naturality condition with respect to applicative
transformations.
Instances of this typeclass
- bitraversable.is_lawful_traversable
- id.is_lawful_traversable
- vector.flip.is_lawful_traversable
- option.is_lawful_traversable
- list.is_lawful_traversable
- sum.is_lawful_traversable
- lazy_list.is_lawful_traversable
- buffer.is_lawful_traversable
- array.is_lawful_traversable
- free_magma.is_lawful_traversable
- free_add_magma.is_lawful_traversable
- free_semigroup.is_lawful_traversable
- free_add_semigroup.is_lawful_traversable
- dlist.is_lawful_traversable
Instances of other typeclasses for is_lawful_traversable
- is_lawful_traversable.has_sizeof_inst
Equations
- id.traversable = {to_functor := applicative.to_functor monad.to_applicative, traverse := λ (_x : Type u_1 → Type u_1) (_x_1 : applicative _x) (_x_1 _x_2 : Type u_1), id}
Equations
- id.is_lawful_traversable = {to_is_lawful_functor := id.is_lawful_traversable._proof_1, id_traverse := id.is_lawful_traversable._proof_2, comp_traverse := id.is_lawful_traversable._proof_3, traverse_eq_map_id := id.is_lawful_traversable._proof_4, naturality := id.is_lawful_traversable._proof_5}
Equations
Equations
Defines a traverse
function on the second component of a sum type.
This is used to give a traversable
instance for the functor σ ⊕ -
.
Equations
- sum.traverse f (sum.inr x) = sum.inr <$> f x
- sum.traverse f (sum.inl x) = has_pure.pure (sum.inl x)