{"id":15285955,"url":"https://github.com/guid75/ziplist","last_synced_at":"2026-01-05T10:04:41.723Z","repository":{"id":57674606,"uuid":"94559866","full_name":"Guid75/ziplist","owner":"Guid75","description":"A simple Elm zipper implementation","archived":false,"fork":false,"pushed_at":"2019-05-13T07:12:23.000Z","size":7,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-23T21:13:44.490Z","etag":null,"topics":["elm","zipper"],"latest_commit_sha":null,"homepage":"http://package.elm-lang.org/packages/Guid75/ziplist/latest","language":"Elm","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Guid75.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}},"created_at":"2017-06-16T15:59:53.000Z","updated_at":"2019-05-13T07:12:25.000Z","dependencies_parsed_at":"2022-09-26T18:30:25.428Z","dependency_job_id":null,"html_url":"https://github.com/Guid75/ziplist","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guid75%2Fziplist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guid75%2Fziplist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guid75%2Fziplist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guid75%2Fziplist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Guid75","download_url":"https://codeload.github.com/Guid75/ziplist/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245168912,"owners_count":20571804,"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":["elm","zipper"],"created_at":"2024-09-30T15:08:47.676Z","updated_at":"2026-01-05T10:04:41.695Z","avatar_url":"https://github.com/Guid75.png","language":"Elm","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ziplist\n\nA ZipList is a type of collection in which you can move a pointer on a current element forwards or backwards.\n\nHere is a simple example:\n\n```elm\nimport ZipList exposing (..)\n\nzlist : ZipList.ZipList Number\nzlist = ZipList.fromList [1, 2, 3] -- this ziplist points on the first element (1) after creation\n\na : Maybe Number\na = ZipList.current zlist -- worth Just 1\n\nb : Maybe Number\nb =\n    zlist\n        |\u003e ZipList.forward\n        |\u003e ZipList.forward\n        |\u003e ZipList.current -- worth Just 3\n\nlist = ZipList.toList zlist -- worth [1, 2, 3]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguid75%2Fziplist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguid75%2Fziplist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguid75%2Fziplist/lists"}