{"id":24290854,"url":"https://github.com/amazingmonster/functivore","last_synced_at":"2025-08-11T16:08:48.907Z","repository":{"id":271980518,"uuid":"914909605","full_name":"AmazingMonster/functivore","owner":"AmazingMonster","description":"A C++ template library for inspecting and simplifying function signatures.","archived":false,"fork":false,"pushed_at":"2025-02-10T16:01:23.000Z","size":37,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T17:21:46.287Z","etag":null,"topics":["cpp","metaprogramming"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AmazingMonster.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":"2025-01-10T15:02:47.000Z","updated_at":"2025-02-10T16:01:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"80e3bd2d-10c1-4bf0-8834-306371871473","html_url":"https://github.com/AmazingMonster/functivore","commit_stats":null,"previous_names":["amazingmonster/functivore"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingMonster%2Ffunctivore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingMonster%2Ffunctivore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingMonster%2Ffunctivore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingMonster%2Ffunctivore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AmazingMonster","download_url":"https://codeload.github.com/AmazingMonster/functivore/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242138879,"owners_count":20078006,"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":["cpp","metaprogramming"],"created_at":"2025-01-16T13:18:54.480Z","updated_at":"2025-03-06T03:11:55.722Z","avatar_url":"https://github.com/AmazingMonster.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Functivore\n\nA C++ template library for inspecting and simplifying function signatures.\n\n## Prologue\n\nFunctivore is an abridged version of `boost::callable_traits`.\nThe library keeps the ability to inspect and simplify a function signature while removing the facilities for editing its qualifiers.\nThe library is implemented based on the same idea as `boost::callable_traits` but is cleaner overall as many metafunctions from `boost::callable_traits` have been removed.\nThe templates in this library are compatible with the metafunctions in [Conceptrodon](https://github.com/AmazingMonster/conceptrodon).\n\n## [Documentation](./DOCS.md)\n\n## Install\n\nFunctivore is a header-only library. After downloading the code, move the directory *./Functivore* to your project, then use it like your own headers.\n\nYou can also install Functivore using CMake:\n\n### Windows\n\n1. Download the library.\n\n2. Open Developer Command Prompt that comes with Visual Studio. Redirect to the library folder. Generate a project buildsystem using CMake:\n\n    ```Shell\n    cmake -S . -B \"Where to build\"\n    ```\n\n3. Redirect to the build directory you specified after `-B` earlier. Run command:\n\n    ```Shell\n    cmake --install . --prefix \"Where to install\"\n    ```\n\nAfter installation, add the install directory you specified after `--prefix` to variable `CMAKE_PREFIX_PATH` in your project's *CMakeCache.txt*. If the variable doesn't exist, you will need to add the following line to your *CMakeCache.txt*:\n\n```CMake\nCMAKE_PREFIX_PATH:PATH=Install directory of the library\n```\n\nIf `CMAKE_PREFIX_PATH` already exists,\nappend the install directory to the values of the variable(note the added semicolon):\n\n```CMake\nCMAKE_PREFIX_PATH:PATH=...; Install directory of the library\n```\n\nIn the *CMakeList.txt* of your project, Add:\n\n```CMake\nfind_package(Functivore REQUIRED CONFIG)\ntarget_link_libraries(YourProject PRIVATE Functivore::Facilities)\n```\n\nYou are good to go.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famazingmonster%2Ffunctivore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famazingmonster%2Ffunctivore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famazingmonster%2Ffunctivore/lists"}