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 of types implicitly convertible from the given type. 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 of types implicitly convertible from the given type.

Detailed Description

Concept of types implicitly convertible from the given type.

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

Definition at line 33 of file implicitly_convertible_to.h.