rblaze/bond-haskell

View on GitHub
runtime/src/Data/Bond/Internal/Bonded.hs

Summary

Maintainability
Test Coverage

Use newtype instead of data
Open

data BondedException = BondedException String
    deriving (Show, Typeable)

Found

data BondedException
  = BondedException String
  deriving (Show, Typeable)

Perhaps

newtype BondedException
  = BondedException String
  deriving (Show, Typeable)

Applying this change:

  • decreases laziness

There are no issues that match your filters.

Category
Status