compact-dict icon indicating copy to clipboard operation
compact-dict copied to clipboard

A fast and compact Dict implementation in Mojo 🔥

Results 1 compact-dict issues
Sort by recently updated
recently updated
newest added

Do you think you could support compile time metaprogramming? An example of how I would try to use it: ``` fn generate_dict() -> StringDict[Int]: var d = StringDict[Int]() d.put("a", 0)...