packages feed

fourmolu-0.0.6.0: data/examples/declaration/class/newlines-between-methods.hs

class Num a where
  (+) :: a -> a -> a
  (-) :: a -> a -> a
  (*) :: a -> a -> a

  -- Comment before definition
  negate :: a -> a
  -- Comment after definition

  -- Separator

  abs :: a -> a
  signum :: a -> a
  -- Comment between unrelated definitions
  fromInteger :: Integer -> a