#include "core.hpp"
#include <optional>
#include <sstream>
#include <string>
#include <vector>
Go to the source code of this file.
|
| template<typename T > |
| auto | relx::query::value (T val) |
| | Create a value expression.
|
| |
| auto | relx::query::val (const char *str) |
| | Helper to create a value expression from a string literal.
|
| |
| auto | relx::query::val (std::string str) |
| | Helper to create a value expression from a string.
|
| |
| auto | relx::query::val (std::string_view sv) |
| | Helper to create a value expression from a string_view.
|
| |
| auto | relx::query::val (int i) |
| | Helper to create a value expression from an int.
|
| |
| auto | relx::query::val (long l) |
| | Helper to create a value expression from a long.
|
| |
| auto | relx::query::val (long long ll) |
| | Helper to create a value expression from a long long.
|
| |
| auto | relx::query::val (double d) |
| | Helper to create a value expression from a double.
|
| |
| auto | relx::query::val (float f) |
| | Helper to create a value expression from a float.
|
| |
| auto | relx::query::val (bool b) |
| | Helper to create a value expression from a bool.
|
| |
| template<typename T > |
| auto | relx::query::val (std::optional< T > opt) |
| | Helper to create a value expression from an optional.
|
| |
| auto | relx::query::val (std::nullopt_t) |
| | Helper to create a value expression from a nullopt.
|
| |