2022-04-01 04:06:53 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: auOptionalEx.hpp
|
|
|
|
Date: 2022-3-23
|
|
|
|
Author: Reece
|
2024-03-01 22:33:50 +00:00
|
|
|
Warning: deprecated
|
2022-04-01 04:06:53 +00:00
|
|
|
***/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "auCopyMoveUtils.hpp"
|
|
|
|
#include "auHashUtils.hpp"
|
|
|
|
|
2024-01-21 00:51:08 +00:00
|
|
|
|
|
|
|
#include "ThirdParty/tartanllamaOptional.hpp"
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
using AuOptionalEx = tl::optional<T>;
|