Classes | |
class | GeneratorConstant< _Result > |
Generator that returns a constant. More... | |
class | GeneratorConstant< void > |
Generator that returns void. More... | |
class | UnaryConstant< _Argument, _Result > |
Unary functor that returns a constant. More... | |
class | BinaryConstant< _FirstArgument, _SecondArgument, _Result > |
Binary functor that returns a constant. More... | |
Functions | |
template<typename _Result > | |
GeneratorConstant< _Result > | GeneratorConstant::constructGeneratorConstant (const _Result &x) |
Convenience function for constructing a GeneratorConstant . | |
template<typename _Result > | |
GeneratorConstant< _Result > | GeneratorConstant::constructGeneratorConstant () |
Convenience function for constructing a GeneratorConstant . | |
template<typename _Argument , typename _Result > | |
UnaryConstant< _Argument, _Result > | UnaryConstant::constructUnaryConstant (const _Result &x) |
Convenience function for constructing a UnaryConstant . | |
template<typename _Argument , typename _Result > | |
UnaryConstant< _Argument, _Result > | UnaryConstant::constructUnaryConstant () |
Convenience function for constructing a UnaryConstant . | |
template<typename _FirstArgument , typename _SecondArgument , typename _Result > | |
BinaryConstant< _FirstArgument, _SecondArgument, _Result > | BinaryConstant::constructBinaryConstant (const _Result &x) |
Convenience function for constructing a BinaryConstant . | |
template<typename _FirstArgument , typename _SecondArgument , typename _Result > | |
BinaryConstant< _FirstArgument, _SecondArgument, _Result > | BinaryConstant::constructBinaryConstant () |
Convenience function for constructing a BinaryConstant . |
Constant functors.
BinaryConstant< _FirstArgument, _SecondArgument, _Result > constructBinaryConstant | ( | ) | [related, inherited] |
Convenience function for constructing a BinaryConstant
.
The constant value is default initialized.
BinaryConstant< _FirstArgument, _SecondArgument, _Result > constructBinaryConstant | ( | const _Result & | x | ) | [related, inherited] |
Convenience function for constructing a BinaryConstant
.
The constant value is specified.
GeneratorConstant< _Result > constructGeneratorConstant | ( | ) | [related, inherited] |
Convenience function for constructing a GeneratorConstant
.
The constant value is default initialized.
GeneratorConstant< _Result > constructGeneratorConstant | ( | const _Result & | x | ) | [related, inherited] |
Convenience function for constructing a GeneratorConstant
.
The constant value is specified.
UnaryConstant< _Argument, _Result > constructUnaryConstant | ( | ) | [related, inherited] |
Convenience function for constructing a UnaryConstant
.
The constant value is default initialized.
UnaryConstant< _Argument, _Result > constructUnaryConstant | ( | const _Result & | x | ) | [related, inherited] |
Convenience function for constructing a UnaryConstant
.
The constant value is specified.