{"id":20153571,"url":"https://github.com/seqan/seqan-std","last_synced_at":"2025-09-21T09:32:13.899Z","repository":{"id":164424129,"uuid":"639863494","full_name":"seqan/seqan-std","owner":"seqan","description":"Implementation of several C++23 views ","archived":false,"fork":false,"pushed_at":"2024-12-19T13:06:31.000Z","size":168,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-12-19T14:23:12.116Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seqan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2023-05-12T11:56:35.000Z","updated_at":"2024-12-19T13:06:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"208cbd5b-c35f-48f4-9a3a-f54c68f78501","html_url":"https://github.com/seqan/seqan-std","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/seqan%2Fseqan-std","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqan%2Fseqan-std/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqan%2Fseqan-std/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seqan%2Fseqan-std/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seqan","download_url":"https://codeload.github.com/seqan/seqan-std/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233739675,"owners_count":18722514,"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-13T23:19:46.340Z","updated_at":"2025-09-21T09:32:13.894Z","avatar_url":"https://github.com/seqan.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nSPDX-FileCopyrightText: 2006-2025 Knut Reinert \u0026 Freie Universität Berlin\nSPDX-FileCopyrightText: 2016-2025 Knut Reinert \u0026 MPI für molekulare Genetik\nSPDX-License-Identifier: CC-BY-4.0\n--\u003e\n\n# seqan-std\n\nImplementation of several C++23 views\n\n## Quick start\n\n### CMake with CPM\n\n\u003c!-- MARKDOWN-AUTO-DOCS:START (CODE:src=./test/CPM/CMakeLists.txt\u0026syntax=cmake) --\u003e\n\u003c!-- The below code snippet is automatically added from ./test/CPM/CMakeLists.txt --\u003e\n```cmake\n# SPDX-FileCopyrightText: 2006-2025 Knut Reinert \u0026 Freie Universität Berlin\n# SPDX-FileCopyrightText: 2016-2025 Knut Reinert \u0026 MPI für molekulare Genetik\n# SPDX-License-Identifier: CC0-1.0\n\ncmake_minimum_required (VERSION 3.25)\n\nproject (example\n         LANGUAGES CXX)\n\n# CPM Documentation:\n#   Adding CPM: https://github.com/cpm-cmake/CPM.cmake?tab=readme-ov-file#adding-cpm\n#   Example : https://github.com/cpm-cmake/CPM.cmake?tab=readme-ov-file#full-cmakelists-example\n# For CPM's example, \"${CPM_FILE}\" would be \"cmake/CPM.cmake\"\ninclude (${CPM_FILE})\nCPMAddPackage (\"gh:seqan/seqan-std#main\")\n\nadd_executable (example example.cpp)\ntarget_link_libraries (example seqan::std)\n```\n\u003c!-- MARKDOWN-AUTO-DOCS:END --\u003e\n\n### Example\n\n\u003c!-- MARKDOWN-AUTO-DOCS:START (CODE:src=./test/CPM/example.cpp) --\u003e\n\u003c!-- The below code snippet is automatically added from ./test/CPM/example.cpp --\u003e\n```cpp\n// SPDX-FileCopyrightText: 2006-2025 Knut Reinert \u0026 Freie Universität Berlin\n// SPDX-FileCopyrightText: 2016-2025 Knut Reinert \u0026 MPI für molekulare Genetik\n// SPDX-License-Identifier: CC0-1.0\n\n#include \u003ciostream\u003e\n#include \u003cstring_view\u003e\n#include \u003cvector\u003e\n\n#include \u003cseqan-std/enumerate_view.hpp\u003e\n\nint main()\n{\n    std::vector\u003cstd::string_view\u003e vec{\"Hello\", \"World\", \"!\"};\n\n    for (auto const [index, str] : seqan::stl::views::enumerate(vec))\n        std::cout \u003c\u003c index \u003c\u003c \": \" \u003c\u003c str \u003c\u003c '\\n';\n}\n```\n\u003c!-- MARKDOWN-AUTO-DOCS:END --\u003e\n\n### Output\n\n\u003c!-- MARKDOWN-AUTO-DOCS:START (CODE:src=./test/CPM/example.expected\u0026syntax=txt) --\u003e\n\u003c!-- The below code snippet is automatically added from ./test/CPM/example.expected --\u003e\n```txt\n0: Hello\n1: World\n2: !\n```\n\u003c!-- MARKDOWN-AUTO-DOCS:END --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseqan%2Fseqan-std","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseqan%2Fseqan-std","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseqan%2Fseqan-std/lists"}