#include <zephyr/kernel.h>
#include <zephyr/sys/__assert.h>
#include <zpp/error_code.hpp>
#include <utility>
Go to the source code of this file.
|
template<typename T_Ok , typename T_Error > |
constexpr bool | zpp::operator== (const result< T_Ok, T_Error > &lhs, bool rhs) noexcept |
| compare result with bool More...
|
|
template<typename T_Ok , typename T_Error > |
constexpr bool | zpp::operator== (bool lhs, const result< T_Ok, T_Error > &rhs) noexcept |
| compare result with bool More...
|
|
template<typename T_Ok , typename T_Error > |
constexpr bool | zpp::operator!= (const result< T_Ok, T_Error > &lhs, bool rhs) noexcept |
| compare result with bool More...
|
|
template<typename T_Ok , typename T_Error > |
constexpr bool | zpp::operator!= (bool lhs, const result< T_Ok, T_Error > &rhs) noexcept |
| compare result with bool More...
|
|