{"id":32293748,"url":"https://github.com/avdosev/itertools_dart","last_synced_at":"2026-02-19T21:52:31.925Z","repository":{"id":61973044,"uuid":"391580384","full_name":"avdosev/itertools_dart","owner":"avdosev","description":"Simple package for easy work with Dart iterators just like Python itertools.","archived":false,"fork":false,"pushed_at":"2022-04-05T08:19:11.000Z","size":40,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-23T03:42:32.718Z","etag":null,"topics":["dart","flutter","iterators","itertools"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/itertools_dart","language":"Dart","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/avdosev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-08-01T09:14:11.000Z","updated_at":"2024-05-17T22:17:14.000Z","dependencies_parsed_at":"2022-10-24T13:30:30.699Z","dependency_job_id":null,"html_url":"https://github.com/avdosev/itertools_dart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/avdosev/itertools_dart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdosev%2Fitertools_dart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdosev%2Fitertools_dart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdosev%2Fitertools_dart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdosev%2Fitertools_dart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avdosev","download_url":"https://codeload.github.com/avdosev/itertools_dart/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdosev%2Fitertools_dart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29634417,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T18:02:07.722Z","status":"ssl_error","status_checked_at":"2026-02-19T18:01:46.144Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["dart","flutter","iterators","itertools"],"created_at":"2025-10-23T03:35:54.282Z","updated_at":"2026-02-19T21:52:31.920Z","avatar_url":"https://github.com/avdosev.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# itertools \u0026middot; ![build status](https://github.com/avdosev/itertools_dart/workflows/unittests/badge.svg)\n\nSimple package for easy work with Dart iterators just like Python itertools.\n\nProvide methods / functions:\n* zip2/zip3/etc\n* chain\n* count\n* enumerate / mapIndexed\n* and other helpers\n\n## Links\n\n[Pub dev][pubdev]\n\n[Documentation][docs]\n\n[Issue tracker][tracker]\n\n## Usage\n\n```dart\nimport 'package:itertools/itertools.dart';\n\nvoid main() {\n  print(zip2(['H', ',', 'a', 'l'], ['i', ' ', 'l', '!'])\n      .starmap((first, second) =\u003e first + second)\n      // equal:\n      // .map((e) =\u003e e.item1 + e.item2)\n      .join());\n  // output: Hi, all!\n\n  print(range(first: 1, last: 10, step: 3).reversed.toList());\n  // output: [7, 4, 1]\n\n  // or more compact\n\n  print(1.to(10, step: 3).reversed.toList());\n  // output: [7, 4, 1]\n\n  print(chain(1.to(4), [4, 5], 1.to(4)).toList());\n  // output: [1, 2, 3,  4, 5,  1, 2, 3]\n}\n```\n\n## Features and bugs\n\nPlease file feature requests and bugs at the [issue tracker][tracker].\n\n[tracker]: https://github.com/avdosev/itertools_dart/issues\n[pubdev]: https://pub.dev/packages/itertools\n[docs]: https://pub.dev/documentation/itertools/latest/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favdosev%2Fitertools_dart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favdosev%2Fitertools_dart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favdosev%2Fitertools_dart/lists"}