OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
type_if.hpp
1#pragma once
2#include <utility>
3
4namespace ossia
5{
6
7template <typename T, bool Predicate>
8struct type_if;
9template <typename T>
10struct type_if<T, false>
11{
12 type_if() = default;
13 type_if(const type_if&) = default;
14 type_if(type_if&&) = default;
15 type_if& operator=(const type_if&) = default;
16 type_if& operator=(type_if&&) = default;
17
18 template <typename U>
19 type_if(U&&)
20 {
21 }
22 template <typename U>
23 T& operator=(U&& u) noexcept
24 {
25 return *this;
26 }
27};
28
29template <typename T>
30struct type_if<T, true>
31{
32 [[no_unique_address]] T value;
33
34 type_if() = default;
35 type_if(const type_if&) = default;
36 type_if(type_if&&) = default;
37 type_if& operator=(const type_if&) = default;
38 type_if& operator=(type_if&&) = default;
39
40 template <typename U>
41 type_if(U&& other)
42 : value{std::forward<U>(other)}
43 {
44 }
45
46 operator const T&() const noexcept { return value; }
47 operator T&() noexcept { return value; }
48 operator T&&() && noexcept { return std::move(value); }
49
50 template <typename U>
51 T& operator=(U&& u) noexcept
52 {
53 return value = std::forward<U>(u);
54 }
55};
56}
Definition git_info.h:7