Go to the source code of this file.
|
namespace | JLANG |
| Auxiliary classes and methods for language specific functionality.
|
|
namespace | JPP |
| This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
|
|
|
template<bool __value__> |
static JBool<!__value__ > | JLANG::c_not (const JBool< __value__ > &value) |
| Make logical NOT.
|
|
template<bool __first__, bool __second__> |
JBool< __first__==__second__ > | JLANG::c_equals (const JBool< __first__ > &first, const JBool< __second__ > &second) |
| Make logical EQUALS.
|
|
template<bool __first__, bool __second__> |
JBool< __first__==__second__ > | JLANG::c_and (const JBool< __first__ > &first, const JBool< __second__ > &second) |
| Make logical AND.
|
|
template<bool __first__, bool __second__> |
JBool< __first__==__second__ > | JLANG::c_or (const JBool< __first__ > &first, const JBool< __second__ > &second) |
| Make logical OR.
|
|
template<bool __first__, bool __second__> |
JBool< __first__==__second__ > | JLANG::c_xor (const JBool< __first__ > &first, const JBool< __second__ > &second) |
| Make logical XOR.
|
|