Coder Social home page Coder Social logo

gmap's People

Contributors

hannesm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

cfcs

gmap's Issues

provide "add" and "update"?

in lots of use cases (parsing protocols), I end up with the side condition "there may be at most one extension of each type present". now, the standard Map.add replaces a potential existing value - same is done by Gmap.add.

It may be worth to explicitly provide add : k -> v -> t -> t option and replace/update : k -> v -> t -> t. the issue left is naming -- add in OCaml is already used for the destructive update in Hashtbl and Map, using it for a different purpose will confuse people. Any suggestions for a function name that does non-replacing addition to a map?

performance considerations

at the moment, every lookup (find, but also union, merge, equal) does two key comparisons: one to find the value in the map and the other to prove to the type system that the binding (a tuple of key and value) and the looked-up key are the same (see this comment).

this is inefficient since the GADT compare function is rather inefficient (afaict). solutions include Obj.magic, vendoring of the Map module from OCaml's stdlib, see https://github.com/cfcs/misc/blob/197ede0fc427d51bd52947e40c02c77350fc2980/gadt_comparison.ml for some more discussion. #3 reimplement equal in a type-safe way without the need to call key comparison twice.

ultimately, I'd like to understand better if there's a good (i.e. cheap and safe) way to do comparisons of GADTs. its also rather painful to write (and ppx_deriving doesn't help).

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.