Tag
Logical Values
Tag that represents true and false.
Include Headers
seqan/basic.h
Remarks
These tags also function as Metafunctions that return a boolean value VALUE and themselves (True/False) as Type.
Metafunctions
AndMetaprogramming "and" operator.
NotMetaprogramming boolean "not" operator.
OrMetaprogramming boolean "or" operator.
Tags
True
The logical value "true".
False
The logical value "false".
Examples
Print the values of these tags/metafunctions.
std::cout << False::VALUE << std::endl;                         // 0
std::cout << True::VALUE << std::endl;                          // 1
std::cout << IsSameType<False,False::Type>::VALUE << std::endl; // 1
See Also
SeqAn - Sequence Analysis Library - www.seqan.de
 

Page built @2013/07/11 09:12:39