Skip to content

Latest commit

 

History

38 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CubbySTL

Standard Template Library for Cubby. It is a C++ template library of containers, algorithms, and iterators useful for runtime and tool development across multiple platforms. It is a fairly extensive and robust implementation of such a library and has an emphasis on high performance above all other considerations.

If you are familiar with the C++ STL or have worked with other templated container/algorithm libraries, you probably don't need to read this. If you have no familiarity with C++ templates at all, then you probably will need more than this document to get you up to speed. In this case, you need to understand that templates, when used properly, are powerful vehicles for the ease of creation of optimized C++ code. A description of C++ templates is outside the scope of this documentation, but there is plenty of such documentation on the Internet.

License

Support Containers

Sequence Containers

  • array
  • vector
  • deque
  • forward_list
  • list

Associative Containers

  • set
  • map
  • multiset
  • multimap

Unordered Associative Containers

  • unordered_set
  • unordered_map
  • unordered_multiset
  • unordered_multimap

Container Adaptors

  • stack
  • queue
  • priority_queue

Support Algorithms

Execution Policies (Maybe N/A)

  • [] sequenced_policy
  • [] parallel_policy
  • [] parallel_unsequenced_policy
  • [] seq
  • [] par
  • [] par_unseq
  • [] is_execution_policy

Non-modifying Sequence Operations

  • [] all_of
  • [] any_of
  • [] none_of
  • [] for_each
  • [] for_each_n
  • [] count
  • [] count_if
  • [] mismatch
  • [] equal
  • [] find
  • [] find_if
  • [] find_if_not
  • [] find_end
  • [] find_first_of
  • [] adjacent_find
  • [] search
  • [] search_n

Documentation

All the documentations for the framework can be found from the project website incluing the API reference.

Benchmark

TBA

How To Contribute

Contributions are always welcome, either reporting issues/bugs or forking the repository and then issuing pull requests when you have completed some additional coding that you feel will be beneficial to the main project. If you are interested in contributing in a more dedicated capacity, then please contact me.

Contact

You can contact me via e-mail (utilForever at gmail.com). I am always happy to answer questions or help with any issues you might have, and please be sure to share any additional work or your creations with me, I love seeing what other people are making.

License

The class is licensed under the MIT License:

Copyright © 2017 Chris Ohk.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Standard Template Library for Cubby. It is an extensive and robust implementation that has an emphasis on high performance.

Topics

Resources

Stars

4 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages