{"id":18871089,"url":"https://github.com/aceinetx/linked","last_synced_at":"2026-02-15T06:30:17.721Z","repository":{"id":256829976,"uuid":"856559172","full_name":"aceinetx/linked","owner":"aceinetx","description":"Double-linked array library for c++","archived":false,"fork":false,"pushed_at":"2024-09-13T20:06:28.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-31T00:12:28.984Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aceinetx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-09-12T19:30:45.000Z","updated_at":"2024-09-13T20:06:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"c19e12df-1f17-403e-bfa3-a42dccab8010","html_url":"https://github.com/aceinetx/linked","commit_stats":null,"previous_names":["aceinetx/linked"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceinetx%2Flinked","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceinetx%2Flinked/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceinetx%2Flinked/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceinetx%2Flinked/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aceinetx","download_url":"https://codeload.github.com/aceinetx/linked/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239818776,"owners_count":19702208,"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-11-08T05:24:19.284Z","updated_at":"2026-02-15T06:30:17.683Z","avatar_url":"https://github.com/aceinetx.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# linked\na double-linked array library for c++\u003cbr\u003e\n## Features\n- std::vector-like functions\n- uses class templates\n- minimal standard library usage\n- minimal dependencies\n- easy to set up\n- python multiplication\n# Example\n```c++\n#include \"linked.h\"\n#include \u003ciostream\u003e\n\nint main(){\n  aceinetzxx::linked\u003cint\u003e arr;\n  \n  arr.push_back(69);\n  arr.push_back(123);\n\n  // get the first number\n  std::cout \u003c\u003c \"The number is \" \u003c\u003c arr[0] \u003c\u003c std::endl; // should print \"The number is 69\"\n\n  // get the last number\n  std::cout \u003c\u003c \"The last number is \" \u003c\u003c arr.back() \u003c\u003c std::endl; // should also print \"The last number is 123\"\n\n  // set the number at index\n  arr[0] = 42;\n\n  // to set the last number we can use .back() too\n  arr.back() = 70;\n\n  // get the size of array\n  size_t array_size = arr.size();\n\n  arr.pop_back(); // this removes the last element and returns it\n                  // but no need to do that in this case because deconstructor cleans everything\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faceinetx%2Flinked","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faceinetx%2Flinked","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faceinetx%2Flinked/lists"}