|
static std::shared_ptr< Value > | nt::Value::MakeBoolean (bool value, uint64_t time=0) |
| Creates a boolean entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeDouble (double value, uint64_t time=0) |
| Creates a double entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeString (const Twine &value, uint64_t time=0) |
| Creates a string entry value. More...
|
|
template<typename T , typename std::enable_if< std::is_same< T, std::string >::value >::type > |
static std::shared_ptr< Value > | nt::Value::MakeString (T &&value, uint64_t time=0) |
| Creates a string entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeRaw (StringRef value, uint64_t time=0) |
| Creates a raw entry value. More...
|
|
template<typename T , typename std::enable_if< std::is_same< T, std::string >::value >::type > |
static std::shared_ptr< Value > | nt::Value::MakeRaw (T &&value, uint64_t time=0) |
| Creates a raw entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeRpc (StringRef value, uint64_t time=0) |
| Creates a rpc entry value. More...
|
|
template<typename T > |
static std::shared_ptr< Value > | nt::Value::MakeRpc (T &&value, uint64_t time=0) |
| Creates a rpc entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeBooleanArray (ArrayRef< int > value, uint64_t time=0) |
| Creates a boolean array entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeDoubleArray (ArrayRef< double > value, uint64_t time=0) |
| Creates a double array entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeStringArray (ArrayRef< std::string > value, uint64_t time=0) |
| Creates a string array entry value. More...
|
|
static std::shared_ptr< Value > | nt::Value::MakeStringArray (std::vector< std::string > &&value, uint64_t time=0) |
|