{"id":51509557,"url":"https://github.com/murphsicles/indexmap","last_synced_at":"2026-07-08T04:31:00.302Z","repository":{"id":358134104,"uuid":"1240169577","full_name":"murphsicles/indexmap","owner":"murphsicles","description":"Ordered hash map for Zeta — IndexMap, IndexSet with predictable iteration order","archived":false,"fork":false,"pushed_at":"2026-05-15T23:28:45.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-15T23:53:58.433Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/murphsicles.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-15T20:55:50.000Z","updated_at":"2026-05-15T23:28:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/murphsicles/indexmap","commit_stats":null,"previous_names":["murphsicles/indexmap"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/murphsicles/indexmap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Findexmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Findexmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Findexmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Findexmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/murphsicles","download_url":"https://codeload.github.com/murphsicles/indexmap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murphsicles%2Findexmap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35252324,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-08T02:00:06.796Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-07-08T04:30:58.765Z","updated_at":"2026-07-08T04:31:00.297Z","avatar_url":"https://github.com/murphsicles.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# @collections/indexmap — Ordered Hash Map for Zeta\n\nAuto-converted from [indexmap](https://crates.io/crates/indexmap) v2.14.0 via [Dark Factory](https://github.com/murphsicles/dark-factory).\n\n## Features\n- **IndexMap** — hash map with predictable iteration order (insertion order)\n- **IndexSet** — hash set with predictable iteration order\n- **O(1) lookups** — same performance as HashMap/HashSet\n- **Indexing** — access by index (`map[0]`, `map[5]`) for random access\n- **Splice/shift** — `shift_remove`, `swap_remove`, `pop`, `retain`, `drain`\n- **Sorted** — `sort_keys`, `sort_by`, `sorted_by` for temporary sorted views\n- **Serde** — serialize/deserialize preserving order\n\n## Usage\n```zeta\nuse @collections/indexmap::IndexMap;\n\nlet mut map = IndexMap::new();\nmap.insert(\"c\", 3);\nmap.insert(\"a\", 1);\nmap.insert(\"b\", 2);\nfor (key, val) in \u0026map {\n    println!(\"{}: {}\", key, val); // c: 3, a: 1, b: 2 (insertion order)\n}\n```\n\n## Stats: ~7,728 lines, 0 unsupported items\n\n## License: MIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmurphsicles%2Findexmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmurphsicles%2Findexmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmurphsicles%2Findexmap/lists"}