Idris2/libs/linear/Data/Linear/LEither.idr

16 lines
317 B
Idris
Raw Normal View History

module Data.Linear.LEither
import Data.Linear.Notation
%default total
public export
data LEither : (a, b : Type) -> Type where
Left : a -@ LEither a b
Right : b -@ LEither a b
export
(Consumable a, Consumable b) => Consumable (LEither a b) where
consume (Left a) = consume a
consume (Right b) = consume b