Giter Club home page Giter Club logo

Comments (5)

HeinrichApfelmus avatar HeinrichApfelmus commented on September 26, 2024

Yes please, although that would require figuring out how to deal with compositionality.

from hyper-haskell.

amigalemming avatar amigalemming commented on September 26, 2024

from hyper-haskell.

HeinrichApfelmus avatar HeinrichApfelmus commented on September 26, 2024

A DisplayList class? I would like to stick to the trick that the Haskell Prelude uses, namely that for every type, we also implements a showList function that is responsible for showing a list of these things.

from hyper-haskell.

amigalemming avatar amigalemming commented on September 26, 2024

from hyper-haskell.

HeinrichApfelmus avatar HeinrichApfelmus commented on September 26, 2024

I think we have the same problem: Some lists should be displayed differently from the default display, just like [Char] should be displayed differently from the default [a]. The only difference is that in our case, it applies to many instances, not just a single one.

We do not have to introduce a DefaultList class, the displayList function can be added to the Display class with exactly the same code and effect.

class Display a where
    display     ::  a  -> Graphic
    displayList :: [a] -> Graphic

    displayList = Text.intersperse (Text.pack "<br>") . map display

instance Display a => Display [a] where
    display = displayList

from hyper-haskell.

Related Issues (20)

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.