Popularity
7.3
Stable
Activity
0.0
Stable
28
5
2

Monthly Downloads: 9
Programming language: Haskell
License: BSD 2-clause "Simplified" License
Tags: Data    

editable alternatives and similar packages

Based on the "Data" category.
Alternatively, view editable alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of editable or a related project?

Add another 'Data' Package

README

editable

Derive editors for data types.

Add deriving Generic and instance Editable Foo to your data type, and you can launch an editor for it with editor :: Editable a => a -> IO a.

{-# LANGUAGE DeriveGeneric #-}
module Demo where

import Data.Editable
import GHC.Generics

data Foo = Bar String Int | Baz Int
  deriving (Show, Generic)

instance Editable Foo

example

Setup

cabal sandbox init
cabal install --only-dependencies
cabal exec ghci demo.hs
# main