lean4-htt/library/init/control/option.lean
2019-03-21 15:06:44 -07:00

66 lines
2.1 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/-
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: Leonardo de Moura, Sebastian Ullrich
-/
prelude
import init.control.alternative init.control.lift init.control.except
universes u v
def OptionT (m : Type u → Type v) (α : Type u) : Type v :=
m (Option α)
@[inline] def OptionT.run {m : Type u → Type v} {α : Type u} (x : OptionT m α) : m (Option α) :=
x
namespace OptionT
variables {m : Type u → Type v} [Monad m] {α β : Type u}
@[inline] protected def bindCont {α β : Type u} (f : α → OptionT m β) : Option α → m (Option β)
| (some a) := f a
| none := pure none
@[inline] protected def bind (ma : OptionT m α) (f : α → OptionT m β) : OptionT m β :=
(ma >>= OptionT.bindCont f : m (Option β))
@[inline] protected def pure (a : α) : OptionT m α :=
(pure (some a) : m (Option α))
instance : Monad (OptionT m) :=
{ pure := @OptionT.pure _ _, bind := @OptionT.bind _ _ }
protected def orelse (ma : OptionT m α) (mb : OptionT m α) : OptionT m α :=
(do { some a ← ma | mb,
pure (some a) } : m (Option α))
@[inline] protected def fail : OptionT m α :=
(pure none : m (Option α))
instance : Alternative (OptionT m) :=
{ failure := @OptionT.fail m _,
orelse := @OptionT.orelse m _,
..OptionT.Monad }
@[inline] protected def lift (ma : m α) : OptionT m α :=
(some <$> ma : m (Option α))
instance : HasMonadLift m (OptionT m) :=
⟨@OptionT.lift _ _⟩
@[inline] protected def monadMap {m'} [Monad m'] {α} (f : ∀ {α}, m α → m' α) : OptionT m α → OptionT m' α :=
λ x, f x
instance (m') [Monad m'] : MonadFunctor m m' (OptionT m) (OptionT m') :=
⟨λ α, OptionT.monadMap⟩
protected def catch (ma : OptionT m α) (handle : Unit → OptionT m α) : OptionT m α :=
(do { some a ← ma | (handle ()),
pure a } : m (Option α))
instance : MonadExcept Unit (OptionT m) :=
{ throw := λ _ _, OptionT.fail, catch := @OptionT.catch _ _ }
instance (m out) [MonadRun out m] : MonadRun (λ α, out (Option α)) (OptionT m) :=
⟨λ α, MonadRun.run⟩
end OptionT