ORIGINAL
Loading...
Searching...
No Matches
original::InputStreamable Concept Reference

Requires type to support input stream extraction. More...

#include <types.h>

Concept definition

template<typename TYPE>
concept original::InputStreamable = requires(std::istream& is, TYPE& t) {
{ is >> t } -> std::same_as<std::istream&>;
}
Requires type to support input stream extraction.
Definition types.h:220

Detailed Description

Requires type to support input stream extraction.

Template Parameters
TYPEThe type to check.

Ensures the type can be read from std::istream using the >> operator.