BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
Namespaces | Functions
constexpr_if.h File Reference
#include "constexpr_int.h"
#include "get.h"
#include "bind.h"
Include dependency graph for constexpr_if.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 bc
 The Evaluator determines if an expression needs to be greedily optimized.
 
 bc::traits
 

Functions

template<bool cond, class f1 , class f2 >
auto bc::traits::constexpr_ternary (f1 true_path, f2 false_path)
 C++ 11/14 version of constexpr if. More...
 
template<bool Bool, class Function >
auto bc::traits::constexpr_if (Function function)
 
template<bool Bool, class F1 , class F2 >
auto bc::traits::constexpr_if (F1 f1, F2 f2)
 
template<bool Bool, class Function >
auto bc::traits::constexpr_else_if (Function function)
 
template<bool Bool, class F1 , class F2 >
auto bc::traits::constexpr_else_if (F1 f1, F2 f2)
 
template<class Function >
auto bc::traits::constexpr_else (Function function)