// The MIT License (MIT) // // Copyright (c) 11/27/18 nick. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE.#ifndef CPP_REDIS_OPTIONAL_HPP #ifndef CPP_REDIS_OPTIONAL_HPP #define CPP_REDIS_OPTIONAL_HPP #include // Prefer std optional #if __cplusplus >= 201703L #include namespace cpp_redis { template using optional_t = std::optional; template using enableIf = typename std::enable_if::type; #else #include namespace cpp_redis { template using enableIf = typename std::enable_if::type; template struct optional { optional(T value) : m_value(value) {} // optional& // operator()(T value) { // m_value = value; // return *this; // } T m_value; template enableIf::value, T> value_or(U &&v) const { __CPP_REDIS_LOG(1, "value_or(U&& v)\n") return std::forward(v); } template auto value_or(F &&action) const -> decltype(action()) { return action(); } }; template using optional_t = optional; #endif } // namespace cpp_redis #endif // CPP_REDIS_OPTIONAL_HPP