is_explicitly_convertible#

Fully qualified name: carb::cpp::is_explicitly_convertible

Defined in carb/cpp/StringViewLike.h

template<typename T, typename L>
struct is_explicitly_convertible : public std::bool_constant<std::is_constructible_v<T, L> && !std::is_convertible_v<T, L>>#

Checks if a type is explicitly convertible to another type.

Template Parameters:
  • T – The type to check.

  • L – The type to check against.