{"id":28941212,"url":"https://github.com/sbueschel/go-linked","last_synced_at":"2026-07-07T07:31:31.171Z","repository":{"id":300416077,"uuid":"1005816698","full_name":"sbueschel/go-linked","owner":"sbueschel","description":"Doubly linked list for Go (with generics)","archived":false,"fork":false,"pushed_at":"2025-08-11T16:35:41.000Z","size":56,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-11T18:33:28.036Z","etag":null,"topics":["data-structures","generics","go","golang","linked-list"],"latest_commit_sha":null,"homepage":"","language":"Go","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/sbueschel.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}},"created_at":"2025-06-20T21:55:10.000Z","updated_at":"2025-08-11T16:34:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"ae4c460d-a961-41b7-b690-2a376d794cd0","html_url":"https://github.com/sbueschel/go-linked","commit_stats":null,"previous_names":["sbueschel/go-linked"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sbueschel/go-linked","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbueschel%2Fgo-linked","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbueschel%2Fgo-linked/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbueschel%2Fgo-linked/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbueschel%2Fgo-linked/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sbueschel","download_url":"https://codeload.github.com/sbueschel/go-linked/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sbueschel%2Fgo-linked/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35219594,"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-07T02:00:07.222Z","response_time":90,"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":["data-structures","generics","go","golang","linked-list"],"created_at":"2025-06-23T02:09:29.889Z","updated_at":"2026-07-07T07:31:31.166Z","avatar_url":"https://github.com/sbueschel.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# linked - Generic Linked List\n\n`linked` is a package implementing a doubly linked list for Go.\n\n![Coverage](cover.svg)\n[![Docs](https://img.shields.io/badge/Docs-pkg.go.dev-blue)](https://pkg.go.dev/github.com/sbueschel/go-linked)\n\n## Features\n\n- **No dependencies**: zero 3rd party dependencies.\n- **Generics**: no need to use `any` or `interface{}` (unless you really want to).\n- **Iterators**: provides both `range` (as in [`iter.Seq`](https://pkg.go.dev/iter#Seq)) and object-based iterators.\n- **...and more**: this package provides plenty in the way of features/ergonomics, but enumerating them is currently a TODO item 🙂\n\n## Getting Started\n\nInstall:\n\n```shell\ngo get github.com/sbueschel/go-linked\n```\n\nUsage:\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n\n    \"github.com/sbueschel/go-linked\"\n)\n\nfunc main() {\n    var list linked.List[int]\n\n    for n := range 10 {\n        list.PushFront(n)\n    }\n\n    list.ForEach(func(v int) { fmt.Printf(\"%d\\n\", v) })\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbueschel%2Fgo-linked","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsbueschel%2Fgo-linked","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsbueschel%2Fgo-linked/lists"}