patrol-0.0.1: src/lib/Patrol/Utility/Maybe.hs
module Patrol.Utility.Maybe ( note ) where note :: e -> Maybe a -> Either e a note e = maybe (Left e) Right
module Patrol.Utility.Maybe ( note ) where note :: e -> Maybe a -> Either e a note e = maybe (Left e) Right