overworked examples
This commit is contained in:
parent
707732a53e
commit
2468631dc9
41 changed files with 91 additions and 16 deletions
doc/examples
27
doc/examples/is_number_unsigned.cpp
Normal file
27
doc/examples/is_number_unsigned.cpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
#include <json.hpp>
|
||||
|
||||
using namespace nlohmann;
|
||||
|
||||
int main()
|
||||
{
|
||||
// create JSON values
|
||||
json j_null;
|
||||
json j_boolean = true;
|
||||
json j_number_integer = 17;
|
||||
json j_number_unsigned_integer = 12345678987654321u;
|
||||
json j_number_float = 23.42;
|
||||
json j_object = {{"one", 1}, {"two", 2}};
|
||||
json j_array = {1, 2, 4, 8, 16};
|
||||
json j_string = "Hello, world";
|
||||
|
||||
// call is_number_unsigned()
|
||||
std::cout << std::boolalpha;
|
||||
std::cout << j_null.is_number_unsigned() << '\n';
|
||||
std::cout << j_boolean.is_number_unsigned() << '\n';
|
||||
std::cout << j_number_integer.is_number_unsigned() << '\n';
|
||||
std::cout << j_number_unsigned_integer.is_number_unsigned() << '\n';
|
||||
std::cout << j_number_float.is_number_unsigned() << '\n';
|
||||
std::cout << j_object.is_number_unsigned() << '\n';
|
||||
std::cout << j_array.is_number_unsigned() << '\n';
|
||||
std::cout << j_string.is_number_unsigned() << '\n';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue