Class status
Synopsis
#include "breeze/vocabulary/maybe.hpp"
class status
Description
The type of the status to associate to the maybe
value.
Methods
status |
Source
Lines 36-41 in breeze/vocabulary/maybe.hpp.
class status
{
public:
explicit status( bool b ) noexcept : value( b ) {}
bool value ;
} ;