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"
#include "blocxx/ArrayImpl.hpp"
Go to the source code of this file.
Classes | |
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. | |
Typedefs | |
typedef Array< UInt8 > | BLOCXX_NAMESPACE::UInt8Array |
typedef Array< Int8 > | BLOCXX_NAMESPACE::Int8Array |
typedef Array< UInt16 > | BLOCXX_NAMESPACE::UInt16Array |
typedef Array< Int16 > | BLOCXX_NAMESPACE::Int16Array |
typedef Array< UInt32 > | BLOCXX_NAMESPACE::UInt32Array |
typedef Array< Int32 > | BLOCXX_NAMESPACE::Int32Array |
typedef Array< UInt64 > | BLOCXX_NAMESPACE::UInt64Array |
typedef Array< Int64 > | BLOCXX_NAMESPACE::Int64Array |
typedef Array< Real64 > | BLOCXX_NAMESPACE::Real64Array |
typedef Array< Real32 > | BLOCXX_NAMESPACE::Real32Array |
Functions | |
BLOCXX_NAMESPACE::BLOCXX_DECLARE_APIEXCEPTION (OutOfBounds, BLOCXX_COMMON_API) | |
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. |