xrpld
Loading...
Searching...
No Matches
Utils.h
1#pragma once
2
3#include <optional>
4#include <type_traits>
5
7
8template <typename ValueType>
13
14}
T is_reference_v
std::conditional_t< std::is_reference_v< ValueType >, std::optional< std::reference_wrapper< std::remove_reference_t< ValueType > > >, std::optional< ValueType > > Optional
Definition Utils.h:9