morley-0.3.0: src/Util/Instances.hs
{-# OPTIONS_GHC -Wno-orphans #-}
-- | Missing instances from libraries.
module Util.Instances () where
import Data.Default (Default(..))
import Fmt (Buildable(..))
instance Default Natural where
def = 0
instance Buildable Natural where
build = build @Integer . fromIntegral