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