{"id":13507152,"url":"https://github.com/takscape/elixir-array","last_synced_at":"2026-02-21T15:05:41.999Z","repository":{"id":19957902,"uuid":"23224777","full_name":"takscape/elixir-array","owner":"takscape","description":"An Elixir wrapper library for Erlang's array","archived":false,"fork":false,"pushed_at":"2020-10-31T18:30:19.000Z","size":249,"stargazers_count":36,"open_issues_count":4,"forks_count":8,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-30T13:13:21.585Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/takscape.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}},"created_at":"2014-08-22T12:36:36.000Z","updated_at":"2025-08-26T02:51:10.000Z","dependencies_parsed_at":"2022-08-26T22:30:48.469Z","dependency_job_id":null,"html_url":"https://github.com/takscape/elixir-array","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/takscape/elixir-array","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takscape%2Felixir-array","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takscape%2Felixir-array/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takscape%2Felixir-array/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takscape%2Felixir-array/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/takscape","download_url":"https://codeload.github.com/takscape/elixir-array/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takscape%2Felixir-array/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29460142,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T22:42:09.113Z","status":"ssl_error","status_checked_at":"2026-02-14T22:42:05.053Z","response_time":53,"last_error":"SSL_read: 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":[],"created_at":"2024-08-01T02:00:25.315Z","updated_at":"2026-02-21T15:05:41.980Z","avatar_url":"https://github.com/takscape.png","language":"Elixir","funding_links":[],"categories":["Algorithms and Data structures","Algorithms and Datastructures"],"sub_categories":[],"readme":"# Array\n\nAn Elixir wrapper library for Erlang's array.\n\nSupports Access, Enumerable and Collectable protocols.\n\n## Using Array with Mix\nTo use array in your projects, add array as a dependency:\n\n```\ndef deps do\n  [{:array, \"~\u003e 1.0.1\"}]\nend\n```\n\nThen run `mix deps.get` to install it.\n\n## Documentation\nhttp://code.void.in/docs/elixir-array/\n\n## Example\n\n```\n# Create\narr = Array.new()\n\n# Update\narr = Array.set(arr, 0, 100)\n\n# Access by indices\narr[0] # -\u003e 0\narr[1000] # -\u003e nil\n\n# Convert from/to list\nArray.from_list([1,2,3,4,5])\nArray.to_list(arr)\n\n# Transform using the Enum module\nArray.from_list([1,2,3,4,5]) |\u003e Enum.map(fn x -\u003e 2*x end)\nEnum.into(0..100, Array.new())\n\n# Comprehension\nfor v \u003c- Array.from_list([1,2,3,4,5]), into: Array.new(), do: v*2\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakscape%2Felixir-array","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakscape%2Felixir-array","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakscape%2Felixir-array/lists"}