{"id":21276447,"url":"https://github.com/lawrence-laz/zig-enumerable","last_synced_at":"2025-07-25T20:08:28.355Z","repository":{"id":220800111,"uuid":"733650323","full_name":"lawrence-laz/zig-enumerable","owner":"lawrence-laz","description":"Iterator tools for functional data processing.","archived":false,"fork":false,"pushed_at":"2024-08-18T18:01:30.000Z","size":127,"stargazers_count":16,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-08-19T19:14:53.343Z","etag":null,"topics":["enumerable","functional","iterators","itertools","linq","zig","zig-package"],"latest_commit_sha":null,"homepage":"","language":"Zig","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/lawrence-laz.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}},"created_at":"2023-12-19T20:10:14.000Z","updated_at":"2024-08-18T18:01:34.000Z","dependencies_parsed_at":"2024-02-04T13:07:00.835Z","dependency_job_id":"c3aade98-195f-4bb7-a90f-cc0eba4295b0","html_url":"https://github.com/lawrence-laz/zig-enumerable","commit_stats":null,"previous_names":["lawrence-laz/zig-enumerable"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lawrence-laz%2Fzig-enumerable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lawrence-laz%2Fzig-enumerable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lawrence-laz%2Fzig-enumerable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lawrence-laz%2Fzig-enumerable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lawrence-laz","download_url":"https://codeload.github.com/lawrence-laz/zig-enumerable/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225708254,"owners_count":17511634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["enumerable","functional","iterators","itertools","linq","zig","zig-package"],"created_at":"2024-11-21T09:49:00.818Z","updated_at":"2024-11-21T09:49:01.379Z","avatar_url":"https://github.com/lawrence-laz.png","language":"Zig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zig Enumerable ⚡\n\nFunctional vibes for data processing as sequences.\n\n```zig\nconst std = @import(\"std\");\nconst enumerable = @import(\"enumerable\");\n\ntest \"example\" {\n    try expectEqualIter(\n        \"(1,2,3)\",\n        enumerable.from(std.mem.tokenizeAny(u8, \"foo=1;bar=2;baz=3\", \"=;\").buffer)\n            .where(std.ascii.isDigit)\n            .intersperse(',')\n            .prepend('(')\n            .append(')'),\n    );\n}\n```\n\n## 📦 Get started\n\n```bash\nzig fetch --save https://github.com/lawrence-laz/zig-enumerable/archive/master.tar.gz\n```\n\n```zig\n// build.zig\nconst enumerable = b.dependency(\"enumerable\", .{\n    .target = target,\n    .optimize = optimize,\n});\n\nexe.root_module.addImport(\"enumerable\", enumerable.module(\"enumerable\"));\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flawrence-laz%2Fzig-enumerable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flawrence-laz%2Fzig-enumerable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flawrence-laz%2Fzig-enumerable/lists"}