|
blocxx
|
#include "blocxx/BLOCXX_config.h"#include "blocxx/ArrayFwd.hpp"#include "blocxx/COWReference.hpp"#include "blocxx/Types.hpp"#include "blocxx/Exception.hpp"#include "blocxx/vector.hpp"#include "blocxx/ArrayImpl.hpp"Go to the source code of this file.
Classes | |
| class | BLOCXX_NAMESPACE::OutOfBoundsException |
| class | BLOCXX_NAMESPACE::Array< T > |
| Array<> wraps std::vector<> in COWReference<> adding ref counting and copy on write capability. More... | |
Namespaces | |
| namespace | BLOCXX_NAMESPACE |
| Taken from RFC 1321. | |
Functions | |
| template<class T > | |
| bool | BLOCXX_NAMESPACE::operator!= (const Array< T > &x, const Array< T > &y) |
| Determine two Arrays are not equal. | |
| template<class T > | |
| bool | BLOCXX_NAMESPACE::operator<= (const Array< T > &x, const Array< T > &y) |
| Determine if one Array is less than or equal to another. | |
| template<class T > | |
| bool | BLOCXX_NAMESPACE::operator>= (const Array< T > &x, const Array< T > &y) |
| Determine if one Array is greater than or equal to another. | |
| template<class T > | |
| bool | BLOCXX_NAMESPACE::operator> (const Array< T > &x, const Array< T > &y) |
| Determine if one Array is greater than another. | |