QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
|
#include "optional.hpp"
#include <vector>
#include <iostream>
#include <functional>
#include <complex>
#include <unordered_set>
#include <string>
Classes | |
struct | caller |
struct | OracleVal |
struct | Oracle |
struct | Guard |
struct | ExplicitStr |
struct | Date |
struct | MoveAware< T > |
struct | BadRelops |
struct | generic< T > |
struct | generic< U & > |
struct | Combined |
struct | Nasty |
struct | CountedObject |
struct | NothrowBoth |
struct | NothrowCtor |
struct | NothrowAssign |
struct | NothrowNone |
struct | VEC |
Namespaces | |
namespace | constexpr_optional_ref_and_arrow |
Macros | |
#define | CAT2(X, Y) X ## Y |
#define | CAT(X, Y) CAT2(X, Y) |
#define | TEST(NAME) caller CAT(__VAR, __LINE__) = [] |
Typedefs | |
template<class T > | |
using | Generic = typename generic< T >::type |
Enumerations | |
enum | State { sDefaultConstructed , sValueCopyConstructed , sValueMoveConstructed , sCopyConstructed , sMoveConstructed , sMoveAssigned , sCopyAssigned , sValueCopyAssigned , sValueMoveAssigned , sMovedFrom , sValueConstructed } |
Functions | |
bool | operator== (Oracle const &a, Oracle const &b) |
bool | operator!= (Oracle const &a, Oracle const &b) |
TEST (disengaged_ctor) | |
TEST (value_ctor) | |
TEST (assignment) | |
TEST (moved_from_state) | |
TEST (copy_move_ctor_optional_int) | |
TEST (optional_optional) | |
TEST (example_guard) | |
void | process () |
void | process (int) |
void | processNil () |
TEST (example1) | |
TEST (example_ref) | |
template<typename T > | |
T | getValue (tr2::optional< T > newVal=tr2::nullopt, tr2::optional< T & > storeHere=tr2::nullopt) |
TEST (example_optional_arg) | |
std::tuple< Date, Date, Date > | getStartMidEnd () |
void | run (Date const &, Date const &, Date const &) |
TEST (example_date) | |
std::experimental::optional< char > | readNextChar () |
void | run (std::experimental::optional< std::string >) |
void | run (std::complex< double >) |
template<class T > | |
void | assign_norebind (tr2::optional< T & > &optref, T &obj) |
template<typename T > | |
void | unused (T &&) |
TEST (example_conceptual_model) | |
TEST (example_rationale) | |
bool | fun (std::string, std::experimental::optional< int > oi=std::experimental::nullopt) |
TEST (example_converting_ctor) | |
TEST (bad_comparison) | |
TEST (value_or) | |
TEST (reset) | |
TEST (mixed_order) | |
constexpr bool | operator< (BadRelops a, BadRelops b) |
constexpr bool | operator> (BadRelops a, BadRelops b) |
TEST (bad_relops) | |
TEST (mixed_equality) | |
TEST (const_propagation) | |
TEST (safe_value) | |
TEST (optional_ref) | |
TEST (optional_ref_const_propagation) | |
TEST (optional_ref_assign) | |
TEST (optional_swap) | |
TEST (optional_ref_swap) | |
TEST (optional_initialization) | |
TEST (optional_hashing) | |
template<class X > | |
bool | generic_fun () |
TEST (optional_ref_emulation) | |
TEST (optional_ref_hashing) | |
TEST (arrow_operator) | |
TEST (arrow_wit_optional_ref) | |
TEST (no_dangling_reference_in_value) | |
TEST (exception_safety) | |
TEST (nested_optional) | |
TEST (three_ways_of_having_value) | |
void | test_noexcept () |
void | constexpr_test_disengaged () |
int | main () |
Variables | |
constexpr tr2::optional< int > | g0 {} |
constexpr tr2::optional< int > | g2 {2} |
constexpr tr2::optional< Combined > | gc0 {tr2::in_place} |
int | gi = 0 |
constexpr tr2::optional< int & > | gori = gi |
constexpr tr2::optional< int & > | gorn {} |
constexpr int & | gri = *gori |
constexpr int | gci = 1 |
constexpr tr2::optional< int const & > | gorci = gci |
constexpr tr2::optional< int const & > | gorcn {} |
constexpr Combined | constexpr_optional_ref_and_arrow::c {1, 2} |
constexpr optional< Combined const & > | constexpr_optional_ref_and_arrow::oc = c |
#define CAT2 | ( | X, | |
Y | |||
) | X ## Y |
#define CAT | ( | X, | |
Y | |||
) | CAT2(X, Y) |
enum State |
TEST | ( | disengaged_ctor | ) |
TEST | ( | value_ctor | ) |
TEST | ( | assignment | ) |
TEST | ( | moved_from_state | ) |
TEST | ( | copy_move_ctor_optional_int | ) |
TEST | ( | optional_optional | ) |
TEST | ( | example_guard | ) |
void process | ( | ) |
void process | ( | int | ) |
void processNil | ( | ) |
TEST | ( | example1 | ) |
TEST | ( | example_ref | ) |
T getValue | ( | tr2::optional< T > | newVal = tr2::nullopt , |
tr2::optional< T & > | storeHere = tr2::nullopt |
||
) |
TEST | ( | example_optional_arg | ) |
TEST | ( | example_date | ) |
std::experimental::optional< char > readNextChar | ( | ) |
void run | ( | std::experimental::optional< std::string > | ) |
void run | ( | std::complex< double > | ) |
void assign_norebind | ( | tr2::optional< T & > & | optref, |
T & | obj | ||
) |
void unused | ( | T && | ) |
TEST | ( | example_rationale | ) |
bool fun | ( | std::string | , |
std::experimental::optional< int > | oi = std::experimental::nullopt |
||
) |
TEST | ( | example_converting_ctor | ) |
TEST | ( | bad_comparison | ) |
TEST | ( | value_or | ) |
TEST | ( | reset | ) |
TEST | ( | mixed_order | ) |
TEST | ( | bad_relops | ) |
TEST | ( | mixed_equality | ) |
TEST | ( | const_propagation | ) |
TEST | ( | safe_value | ) |
TEST | ( | optional_ref | ) |
TEST | ( | optional_ref_const_propagation | ) |
TEST | ( | optional_ref_assign | ) |
TEST | ( | optional_swap | ) |
TEST | ( | optional_ref_swap | ) |
TEST | ( | optional_initialization | ) |
TEST | ( | optional_hashing | ) |
bool generic_fun | ( | ) |
TEST | ( | optional_ref_emulation | ) |
TEST | ( | optional_ref_hashing | ) |
TEST | ( | arrow_operator | ) |
TEST | ( | arrow_wit_optional_ref | ) |
TEST | ( | no_dangling_reference_in_value | ) |
TEST | ( | exception_safety | ) |
TEST | ( | nested_optional | ) |
TEST | ( | three_ways_of_having_value | ) |
void test_noexcept | ( | ) |
void constexpr_test_disengaged | ( | ) |
int main | ( | ) |
|
constexpr |
|
constexpr |
|
constexpr |
int gi = 0 |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |