{"id":17442735,"url":"https://github.com/ffflorian/double_linked_list","last_synced_at":"2025-03-29T20:15:12.002Z","repository":{"id":77223833,"uuid":"90372732","full_name":"ffflorian/double_linked_list","owner":"ffflorian","description":"A Rust implementation of a double-linked list","archived":false,"fork":false,"pushed_at":"2024-08-11T09:08:50.000Z","size":32,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-04T20:44:28.180Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ffflorian.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":"2017-05-05T12:20:02.000Z","updated_at":"2024-08-14T15:35:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"347297b5-0eb4-458a-9ff8-08b061c38653","html_url":"https://github.com/ffflorian/double_linked_list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffflorian%2Fdouble_linked_list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffflorian%2Fdouble_linked_list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffflorian%2Fdouble_linked_list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffflorian%2Fdouble_linked_list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ffflorian","download_url":"https://codeload.github.com/ffflorian/double_linked_list/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246237436,"owners_count":20745348,"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":[],"created_at":"2024-10-17T16:28:07.675Z","updated_at":"2025-03-29T20:15:11.963Z","avatar_url":"https://github.com/ffflorian.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"## double_linked_list\n\nA linked list in which every element knows about its predecessor and its successor.\n```\n ______     ______     ______\n| |  | |   | |  | |   | |  | |\n| |  | \u003c---\u003e |  | \u003c---\u003e |  | |\n|_|__|_|   |_|__|_|   |_|__|_|\n  prev        n         next\n```\n\n### Usage\n\n```rust\nextern crate double_linked_list;\n\nuse double_linked_list::LinkedList;\nuse double_linked_list::ListElement;\n\nlet list = LinkedList::new();\nlet element = ListElement::new(\"hello\");\n```\n\n### Testing\n\nUse `cargo` for testing:\n```bash\n$ cargo test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fffflorian%2Fdouble_linked_list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fffflorian%2Fdouble_linked_list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fffflorian%2Fdouble_linked_list/lists"}