Giter Site home page Giter Site logo

woehr / open-adt Goto Github PK

View Code? Open in Web Editor NEW
4.0 4.0 1.0 9.83 MB

Open algebraic data types. Reuse constructors in different types; add and remove constructors from values.

License: BSD 3-Clause "New" or "Revised" License

Haskell 93.07% Nix 5.83% Shell 1.10%
haskell-library

open-adt's People

Contributors

pcarbonn avatar woehr avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

pcarbonn

open-adt's Issues

example of overlappable instance ?

The tutorial says:

These situations can be handled with the type class approach just discussed with overlappable instances.

Could you give an example for those of us not expert in type hackery ? I have some difficulty writing the Overlappable instance. A draft would be something like:

instance {-# OVERLAPPABLE #-} ( OpenAlg r ?? ?? (OpenADT r)) => OverList a a' r ?? where
  fmapList' _ ?? = ??

Thanks !

signatures could be simpler.

Here is a sample code:

  replaceVariable :: ( OpenAlg xs "atomF" AtomF (OpenADT xs)
            , (ApplyRow (OpenADT xs) xs .- "atomF") ~ ApplyRow (OpenADT xs) (xs .- "atomF")
            , ((xs .- "atomF") .\/ 'R '["atomF" ':-> AtomF]) ~ xs
            , (ApplyRow (OpenADT xs) (xs .- "atomF") .\/ 'R '["atomF" ':-> AtomF (Fix (VarF xs))])
              ~ ApplyRow (OpenADT xs) xs
            , (Forall (xs .- "atomF") Functor)
            )
      => Text -> Term -> OpenADT xs -> OpenADT xs
  replaceVariable variable value formula =
    case trialF (unfix formula) #atomF of
      Right other -> other & (fmap (replaceVariable variable value)) & diversifyF @("atomF" .== AtomF) & Fix
      Left (AtomF' α name terms) -> Atom α name $ fmap go terms
        where go t =
                case t of
                  GText text -> if text == variable then value else t
                  _ -> t

Some of the constraints in the signature seem to be stating the obvious.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.