• sirdorius@programming.dev
    link
    fedilink
    arrow-up
    5
    ·
    11 months ago

    That library is dead for more than a year. Maintainer even deleted the repository. But the article is still a good read.

  • Zyansheep@programming.dev
    link
    fedilink
    arrow-up
    3
    ·
    11 months ago

    So… basically a nicer API for arena or vector-based allocation where you store the index instead of a pointer?

  • Vorpal@programming.dev
    link
    fedilink
    arrow-up
    3
    ·
    11 months ago

    Seems to be a wrapper around implementing the “index into data store”-pattern (not sure if there is a better name), but without support for removal from said data store.

    From a quick glance I don’t really see what this gives you that wouldn’t also be quite easy with a manual implementation. And then you avoid the proc macro compile time overhead as well.