mn_fixed_array.hpp File Reference
Class for a fixed array. This file is part of the Mini Thread Library (https://github.com/RoseLeBlood/MiniThread ). More...
#include "../mn_config.hpp"
#include <cassert>
#include <typeinfo>
#include "mn_algorithm.hpp"
#include "../mn_allocator.hpp"
#include "../mn_def.hpp"
#include "../mn_functional.hpp"
#include "../mn_typetraits.hpp"
#include "../utils/mn_utils.hpp"
Go to the source code of this file.
Classes | |
class | mn::container::basic_fixed_array< T, N > |
A standard container for storing a fixed size sequence of elements. More... | |
Namespaces | |
mn | |
mn::container | |
Typedefs | |
template<typename T , size_t N> | |
using | mn::container::fixed_array = basic_fixed_array< T, N > |
Functions | |
template<typename T , size_t N> | |
bool | mn::container::operator== (const basic_fixed_array< T, N > &a, const basic_fixed_array< T, N > &b) |
template<typename T , size_t N> | |
bool | mn::container::operator!= (const basic_fixed_array< T, N > &a, const basic_fixed_array< T, N > &b) |
template<typename T , size_t N> | |
bool | mn::container::operator< (const basic_fixed_array< T, N > &a, const basic_fixed_array< T, N > &b) |
template<typename T , size_t N> | |
bool | mn::container::operator<= (const basic_fixed_array< T, N > &a, const basic_fixed_array< T, N > &b) |
template<typename T , size_t N> | |
bool | mn::container::operator> (const basic_fixed_array< T, N > &a, const basic_fixed_array< T, N > &b) |
template<typename T , size_t N> | |
bool | mn::container::operator>= (const basic_fixed_array< T, N > &a, const basic_fixed_array< T, N > &b) |
template<typename T , size_t N> | |
void | mn::container::swap (basic_fixed_array< T, N > &a, basic_fixed_array< T, N > &b) |
template<typename T , size_t N> | |
void | mn::container::fill (basic_fixed_array< T, N > &a, const int val) |
template<typename T , size_t N> | |
void | mn::container::zero (basic_fixed_array< T, N > &a) |
Detailed Description
Class for a fixed array. This file is part of the Mini Thread Library (https://github.com/RoseLeBlood/MiniThread ).
- License
- The Mini Thread Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, version 3, or (at your option) any later version.
The Mini Thread Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with the Mini Thread Library; if not, see https://www.gnu.org/licenses/.