StormByte C++ Library 1.2.0
StormByte is a comprehensive, cross-platform C++ library aimed at easing system programming, configuration management, logging, and database handling tasks. This library provides a unified API that abstracts away the complexities and inconsistencies of different platforms (Windows, Linux).
Loading...
Searching...
No Matches
StormByte::Type::Reference Concept Reference

Lvalue or rvalue reference type. More...

#include <StormByte/type_traits/categories.hxx>

Concept definition

template<typename T>
concept StormByte::Type::Reference = std::is_reference_v<T>
Lvalue or rvalue reference type.
Definition categories.hxx:49

Detailed Description

Lvalue or rvalue reference type.

Template Parameters
TType to test.
template<Type::Reference T>
void process(T&& ref);