Giter VIP home page Giter VIP logo

Comments (6)

paldepind avatar paldepind commented on May 23, 2024

Since this is specific for Sanctuary, what do you think about including it in sanctuary-list(*)?

(*) Which I have not forgotten about 😅

from list.

davidchambers avatar davidchambers commented on May 23, 2024

I like to imagine a future in which the Fantasy Land community at large adopts @@show. There's nothing Sanctuary-specific about the specification.

Edit: Updated link to point to correct project.

from list.

paldepind avatar paldepind commented on May 23, 2024

I don't see anything about @@show in the link? What is the difference between toString and @@show? If List implemented a toString method could it's @@show method simply be List.prototype["@@show"] = List.prototype.toString?

from list.

davidchambers avatar davidchambers commented on May 23, 2024

I don't see anything about @@show in the link?

Oops! I linked to the wrong project. I meant to link to sanctuary-show.

If List implemented a toString method could it's @@show method simply be List.prototype["@@show"] = List.prototype.toString?

If List#toString uses show to generate the string representations of its elements, then absolutely!

from list.

paldepind avatar paldepind commented on May 23, 2024

@davidchambers

If I understand correctly @@show should be implemented as:

List.prototype["@@show"] = function(l) {
  return "list(" + L.join(", ", L.map(show, l)) + ")";
}

However, that depends on the show function from sanctuary-show. I hope List will become a foundational library and therefore I'd like to avoid adding dependencies to it.

I understand that converting values to strings is used extensively in Sanctuary to do error reporting. But outside of that, I don't see many use cases for converting a list into an evaluateable string. Debugging and REPLs could be potential use cases but JavaScript has debuggers and REPLs that don't rely on converting values to strings.

Taking that into consideration, wouldn't it be more reasonable to add @@show in sanctuary-list?

from list.

davidchambers avatar davidchambers commented on May 23, 2024

I hope List will become a foundational library and therefore I'd like to avoid adding dependencies to it.

I hope that show will become foundational and that all ADTs will support it. ;)

Taking that into consideration, wouldn't it be more reasonable to add @@show in sanctuary-list?

It's certainly reasonable. It seems that Sanctuary is opinionated to the point that we need a sanctuary- package for everything (except Future a b).

from list.

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.