1
// =================================
2
// Copyright (c) 2021 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
namespace
System
7
{
8
public
inline
nothrow
T
&&
Rvalue
<
T
>
(
T
&&
x
)
9
{
10
return
cast
<
T
&&
>
(
x
)
;
11
}
12
}