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

Concept of types convertible from the given type. More...

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

Concept definition

template<typename From, typename To>
requires(const From& from, To& to) { to = static_cast<To>(from); }
Concept of types convertible from the given type.

Detailed Description

Concept of types convertible from the given type.

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

Definition at line 33 of file convertible_to.h.