|
| template<typename RandomIterator , typename T > |
| void | CubbyFlow::SerialFill (const RandomIterator &begin, const RandomIterator &end, const T &value) |
| | Fills from begin to end with value.
|
| |
| template<typename IndexType , typename Function > |
| void | CubbyFlow::SerialFor (IndexType beginIndex, IndexType endIndex, const Function &function) |
| | Makes a for-loop from beginIndex to endIndex.
|
| |
| template<typename IndexType , typename Function > |
| void | CubbyFlow::SerialFor (IndexType beginIndexX, IndexType endIndexX, IndexType beginIndexY, IndexType endIndexY, const Function &function) |
| | Makes a 2D nested for-loop.
|
| |
| template<typename IndexType , typename Function > |
| void | CubbyFlow::SerialFor (IndexType beginIndexX, IndexType endIndexX, IndexType beginIndexY, IndexType endIndexY, IndexType beginIndexZ, IndexType endIndexZ, const Function &function) |
| | Makes a 3D nested for-loop.
|
| |
| template<typename RandomIterator > |
| void | CubbyFlow::SerialSort (RandomIterator begin, RandomIterator end) |
| | Sorts a container.
|
| |
| template<typename RandomIterator , typename SortingFunction > |
| void | CubbyFlow::SerialSort (RandomIterator begin, RandomIterator end, const SortingFunction &sortingFunction) |
| | Sorts a container with a custom compare function.
|
| |