{-# OPTIONS --cubical-compatible --safe #-}
module Effect.Choice where
open import Level
private
variable
ℓ ℓ′ : Level
A : Set ℓ
record RawChoice (F : Set ℓ → Set ℓ′) : Set (suc ℓ ⊔ ℓ′) where
infixr 3 _<|>_ _∣_
field
_<|>_ : F A → F A → F A
_∣_ : F A → F A → F A
_∣_ = _<|>_