MCRO
C++23 utilities for Unreal Engine.
Loading...
Searching...
No Matches
Mcro::Concepts::CConstructibleFrom Concept Reference

#include <Concepts.h>

Concept definition

template<typename T, typename... From>
concept Mcro::Concepts::CConstructibleFrom = requires(From&&... from) { std::decay_t<T>(FWD(from)...); }
#define FWD(...)
Shorten forwarding expression with this macro so one may not need to specify explicit type.
Definition Macros.h:100

Detailed Description

Definition at line 140 of file Concepts.h.