|
join 1.0
lightweight network framework library
|
#include <join/variant.hpp>#include <join/error.hpp>#include <functional>#include <iostream>#include <sstream>#include <fstream>#include <string>#include <vector>#include <limits>#include <cstdint>#include <cmath>

Go to the source code of this file.
Classes | |
| class | join::Value |
| value class. More... | |
Namespaces | |
| namespace | join |
Typedefs | |
| using | join::Array = std::vector <Value> |
| array. | |
| using | join::Member = std::pair <std::string, Value> |
| object member. | |
| using | join::Object = std::vector <Member> |
| object. | |
Functions | |
| constexpr bool | join::operator== (const Value &lhs, const Value &rhs) |
| compare if equal. | |
| constexpr bool | join::operator!= (const Value &lhs, const Value &rhs) |
| compare if not equal. | |
| constexpr bool | join::operator< (const Value &lhs, const Value &rhs) |
| compare if lower than. | |
| constexpr bool | join::operator> (const Value &lhs, const Value &rhs) |
| compare if greater than. | |
| constexpr bool | join::operator<= (const Value &lhs, const Value &rhs) |
| compare if lower or equal than. | |
| constexpr bool | join::operator>= (const Value &lhs, const Value &rhs) |
| compare if greater or equal than. | |