All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Namespaces
UnsignedValue.h File Reference

Header file for the UnsignedValue class. More...

#include <istream>
#include <ostream>
#include <blaze/util/constraints/Unsigned.h>

Go to the source code of this file.

Classes

class  blaze::UnsignedValue< T >
 Implementation of a wrapper for built-in unsigned integral values.This class wraps a value of built-in unsigned integral type in order to be able to extract non-negative unsigned integral values from an input stream. More...
 

Namespaces

namespace  blaze
 Namespace of the Blaze C++ math library.
 

Functions

UnsignedValue operators
template<typename T1 , typename T2 >
bool blaze::operator== (const UnsignedValue< T1 > &lhs, const UnsignedValue< T2 > &rhs)
 Equality comparison between two UnsignedValue objects.
 
template<typename T1 , typename T2 >
bool blaze::operator!= (const UnsignedValue< T1 > &lhs, const UnsignedValue< T2 > &rhs)
 Inequality comparison between two UnsignedValue objects.
 
template<typename T1 , typename T2 >
bool blaze::operator< (const UnsignedValue< T1 > &lhs, const UnsignedValue< T2 > &rhs)
 Less-than comparison between two UnsignedValue objects.
 
template<typename T1 , typename T2 >
bool blaze::operator> (const UnsignedValue< T1 > &lhs, const UnsignedValue< T2 > &rhs)
 Greater-than comparison between two UnsignedValue objects.
 
template<typename T1 , typename T2 >
bool blaze::operator<= (const UnsignedValue< T1 > &lhs, const UnsignedValue< T2 > &rhs)
 Less-or-equal-than comparison between two UnsignedValue objects.
 
template<typename T1 , typename T2 >
bool blaze::operator>= (const UnsignedValue< T1 > &lhs, const UnsignedValue< T2 > &rhs)
 Greater-or-equal-than comparison between two UnsignedValue objects.
 
template<typename T >
std::ostream & blaze::operator<< (std::ostream &os, const UnsignedValue< T > &uv)
 Global output operator for the UnsignedValue wrapper.
 
template<typename T >
std::istream & blaze::operator>> (std::istream &is, UnsignedValue< T > &uv)
 Global input operator for the UnsignedValue wrapper.
 

Detailed Description

Header file for the UnsignedValue class.

Copyright (C) 2011 Klaus Iglberger - All Rights Reserved

This file is part of the Blaze library. This library is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.

This 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 General Public License along with a special exception for linking and compiling against the Blaze library, the so-called "runtime exception"; see the file COPYING. If not, see http://www.gnu.org/licenses/.