packages feed

possibly-0.0.0.1: src/Data/Possibly.hs

module Data.Possibly where

-- | For contexts where the @Left@ type is a 'String' diagnostic.
type Possibly a = Either String a