oraqlle / cortexlib

A library of general purpose types, classes, functions, algorithms, utilities and other components for C++.
https://oraqlle.github.io/cortexlib/
MIT License
0 stars 0 forks source link
cpp cpp20 library package

Cortex

Contributor Covenant License

Current Release

A library with a bunch of random types, classes, functions, algorithms and other general purpose utilities for C++. Cortex serves as a collection of any general C++ components that don't really fit anywhere else.


Contents

Development Status

Cortex is pretty unstable and currently undergoes regular changes. It also has limited testing meaning that meaning it could break. There is no promise for long-term support and may evolve without regard to backwards compatibility. That being said I do plan to stabilise the library more with time.

Install

Cortex is available from the CodeBytes CRS repository. Simply add cortexlib@0.2.0 to the 'dependencies' section of your bpt.yaml file. When running bpt build, use --use-repo "codebytes.netlify.app" or -r "codebytes.netlify.app" flag option to specify lookup through CodeBytes.

Cortex is broken down into three separate sub-libraries. These being:

To use any component from these library simply #include the relevant header prefixed with the library eg. #include <data_structures/matrix.hxx>

Contributing and License

Supported Compilers

Note: The `-std=c++20 must be used


Features

Cortex is a library with a bunch of random components from different data structures and algorithms to concurrency tools and general utilities. Everything in Cortex is kept within the cxl namespace.

Containers

Cortex features a few unique, general purpose container types designed to compliment the existing C++ standard library containers and algorithms.

List of Containers

Iterators

Iterators library is designed to compliment the containers library and offer different traversal patterns across various data structures.

List of Iterators

Utilities

Cortex's utilities library contains various general purpose utility objects and types.

List of Utilities