Popularity
7.5
Declining
Activity
0.0
Stable
28
5
2
Monthly Downloads: 19
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.
-
lens
Lenses, Folds, and Traversals - Join us on web.libera.chat #haskell-lens -
semantic-source
Parsing, analyzing, and comparing source code across many languages -
code-builder
Packages for defining APIs, running them, generating client code and documentation. -
text
Haskell library for space- and time-efficient operations over Unicode text. -
compendium-client
Mu (μ) is a purely functional framework for building micro services. -
cassava
A CSV parsing and encoding library optimized for ease of use and high performance -
unordered-containers
Efficient hashing-based container types -
holmes
A reference library for constraint-solving with propagators and CDCL. -
binary
Efficient, pure binary serialisation using ByteStrings in Haskell. -
resource-pool
A high-performance striped resource pooling implementation for Haskell -
primitive
This package provides various primitive memory-related operations. -
discrimination
Fast linear time sorting and discrimination for a large class of data types -
dependent-sum
Dependent sums and supporting typeclasses for comparing and displaying them -
IORefCAS
A collection of different packages for CAS based data structures. -
dependent-map
Dependently-typed finite maps (partial dependent products) -
reflection
Reifies arbitrary Haskell terms into types that can be reflected back into terms -
orgmode-parse
Attoparsec parser combinators for parsing org-mode structured text! -
streaming
An optimized general monad transformer for streaming applications, with a simple prelude of functions -
uuid-types
A Haskell library for creating, printing and parsing UUIDs -
scientific
Arbitrary-precision floating-point numbers represented using scientific notation -
text-icu
This package provides the Haskell Data.Text.ICU library, for performing complex manipulation of Unicode text.
Developer Ecosystem Survey 2022
Take part in the Developer Ecosystem Survey 2022 by JetBrains and get a chance to win a Macbook, a Nvidia graphics card, or other prizes. We’ll create an infographic full of stats, and you’ll get personalized results so you can compare yourself with other developers.
Promo
surveys.jetbrains.com
Do you think we are missing an alternative of editable or a related project?
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
Setup
cabal sandbox init
cabal install --only-dependencies
cabal exec ghci demo.hs
# main