OpenKalman
Variables
assignable.hpp File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Variables

template<typename To , typename From >
constexpr bool OpenKalman::internal::element_gettable
 Specifies that a type is assignable by the function assign without directly copying elements. More...
 

Variable Documentation

◆ element_gettable

template<typename To , typename From >
constexpr bool OpenKalman::internal::element_gettable
Initial value:
=
interface::assign_defined_for<To, To, From> or
interface::assign_defined_for<To, To, decltype(to_native_matrix<To>(std::declval<From>()))> or
std::is_assignable_v<To, From> or
std::is_assignable_v<To, decltype(to_native_matrix<To>(std::declval<From>()))>

Specifies that a type is assignable by the function assign without directly copying elements.

Deprecated: