43#ifndef LASS_GUADIAN_OF_INCLUSION_META_IF_H
44#define LASS_GUADIAN_OF_INCLUSION_META_IF_H
56template <
typename Bool,
typename TrueType,
typename FalseType>
struct IfImpl;
82template <
typename Condition,
typename TrueType,
typename FalseType>
83struct If:
public If<typename Condition::Type, TrueType, FalseType>
87template <
typename TrueType,
typename FalseType>
88struct If<
True, TrueType, FalseType>:
public TrueType
92template <
typename TrueType,
typename FalseType>
93struct If<False, TrueType, FalseType>:
public FalseType
Library for Assembled Shared Sources.