5 lines
85 B
C++
5 lines
85 B
C++
#pragma once
|
|
#include <optional>
|
|
template <typename T>
|
|
using RET = std::optional<T>;
|