Files
advent-of-code-2022/src/Shared.hs
2022-12-07 16:56:47 +01:00

7 lines
145 B
Haskell

module Shared(forceRight) where
forceRight :: Either a b -> b
forceRight (Left _) = error "forced Right but got Left"
forceRight (Right b) = b