anonymous-sums-0.6.0.0: Sums.hs
{-# LANGUAGE TemplateHaskell #-}
-- | Anonymous sum types. Like tuples, but for sum types rather than
-- product types. Easier than using nested 'Either'.
module Sums where
import Sums.Internal
$(return . map sumDeclaration $ [0..15])