numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::base::concepts::implicitly_convertible_to Concept Reference

Concept to check if From is implicitly convertible to To. More...

#include <num_collect/base/concepts/implicitly_convertible_to.h>

Concept definition

template<typename From, typename To>
requires(const From& from, To& to) { to = from; }
Concept to check if From is implicitly convertible to To.

Detailed Description

Concept to check if From is implicitly convertible to To.

Template Parameters
FromType to convert from.
ToType to convert to.

Definition at line 33 of file implicitly_convertible_to.h.