Giter Club home page Giter Club logo

Comments (4)

pliniker avatar pliniker commented on June 19, 2024

Well I've tried to mine my memory and notes for some clever reason I ordered the tags this way but I can't find anything 😄

Seems like a hole in the logic.

I'll fix this shortly, unless you are interested in submitting a PR?

from book.

andybest avatar andybest commented on June 19, 2024

I'm not sure what your preferred solution to this problem would be, but I've seen at least couple from things I've looked into:

  1. Statically allocate an arbitrary "nil" object (I've seen some Lisps that do this, and do pointer comparison with this object to determine if a value is "nil", or "the empty list")
  2. Use a tag value to represent a kind of "second order" tag. This way, you can have extra bits dedicated to another tag enum, and represent a whole bunch of things in the pointer, such as constants (like nil, true, false), and other types that would fit within a usize (like 8 and 16 bit integers). This has the obvious downside that you'd lose a tag that you could otherwise use for something else.
  3. Maybe use an object tag pointing to 0x0 (so it would be a constant pointer of 0x3)?

I'm sure that there are a multitude of other options

from book.

pliniker avatar pliniker commented on June 19, 2024

The most obvious option to me is to reassign tags such that nil is a Symbol with a pointer value of 0x0. PR #52 should show what I mean.

I've considered option 1 to be a possible solution for keyword symbols in general. It would be a somewhat more involved solution, though there is already the SymbolMap which could be prepopulated with keyword symbols. I haven't thought this through all the way, yet.

from book.

andybest avatar andybest commented on June 19, 2024

Yup, looks like a good solution to me!

from book.

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.