{"id":18603749,"url":"https://github.com/abdullahselek/queuecxx","last_synced_at":"2025-08-04T12:40:49.293Z","repository":{"id":71933167,"uuid":"92734164","full_name":"abdullahselek/queuecxx","owner":"abdullahselek","description":"C++ generic Queue implementation.","archived":false,"fork":false,"pushed_at":"2017-06-10T08:14:46.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-23T08:04:08.311Z","etag":null,"topics":["cpp","generic","library","queue"],"latest_commit_sha":null,"homepage":"","language":"CMake","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abdullahselek.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-29T11:36:12.000Z","updated_at":"2017-06-03T08:16:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"a66d0aab-79eb-4575-a4f2-18fd6df4f1d9","html_url":"https://github.com/abdullahselek/queuecxx","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abdullahselek/queuecxx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahselek%2Fqueuecxx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahselek%2Fqueuecxx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahselek%2Fqueuecxx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahselek%2Fqueuecxx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abdullahselek","download_url":"https://codeload.github.com/abdullahselek/queuecxx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahselek%2Fqueuecxx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268697270,"owners_count":24292394,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cpp","generic","library","queue"],"created_at":"2024-11-07T02:15:24.112Z","updated_at":"2025-08-04T12:40:49.239Z","avatar_url":"https://github.com/abdullahselek.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"# queuecxx\n\n[![Build Status](https://travis-ci.org/abdullahselek/queuecxx.svg?branch=master)](https://travis-ci.org/abdullahselek/queuecxx)\n\nGeneric Queue implementation with C++ as a library.\n\n## Building Repository\n\nTo build the repository you need CMake. You can download from [here](https://cmake.org/download/).\nYou can create a shortcut ```cmake``` command for macOS as below\n\n```\nsudo mkdir -p /usr/local/bin\nsudo /Applications/CMake.app/Contents/bin/cmake-gui --install=/usr/local/bin\n```\n\nAfter cloning repository to your own local machine go to project root folder and run\n\n```\ncmake .\n```\n\nand then\n\n```\ncmake --build .\n```\n\nto run unit tests for UNIX machines\n\n```\ncd test\n./tests --gtest_color=yes\n```\n\nand for Windows machines\n\n```\ncd test/Debug/\ntests.exe --gtest_color=yes\n```\n\n## Sample Usage\n\nInitiate queue object with int type as below\n\n```\nQueue\u003cint\u003e queue{3};\n```\n\nInsert item\n\n```\nqueue.insert(1);\n```\n\nChecking if queue is empty\n\n```\nbool isEmpty = queue.isEmpty();\n```\n\nChecking if queue is full\n\n```\nbool isFull = queue.isFull();\n```\n\nGetting queue size\n\n```\nint size = queue.size();\n```\n\nRemove item from queue\n\n```\nint removedItem = queue.removeData(1);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullahselek%2Fqueuecxx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdullahselek%2Fqueuecxx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullahselek%2Fqueuecxx/lists"}