farm-ng-core
utils.h File Reference
#include <initializer_list>
#include <type_traits>
Include dependency graph for utils.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 sophus
 Image MutImage, owning images types.
 
 sophus::concepts
 

Variables

template<class TDerived , class TBase >
concept sophus::concepts::DerivedFrom = std::is_base_of_v<TBase, TDerived>
 
template<class TBase , class TDerived >
concept sophus::concepts::IsBaseOf = std::is_base_of_v<TBase, TDerived>
 
template<class TT , class TU >
concept sophus::concepts::SameAs = std::is_same_v<TT, TU>
 
template<class TT >
concept sophus::concepts::EnumType = std::is_enum_v<TT>
 
template<class TT >
concept sophus::concepts::Arithmetic = std::is_arithmetic_v<TT>
 
template<class TFrom , class TTo >
concept sophus::concepts::ConvertibleTo
 
template<class TT , class... TArgs>
concept sophus::concepts::ConstructibleFrom
 
template<class T >
concept sophus::concepts::Range