File: ceil.md

package info (click to toggle)
jsoncons 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 17,584 kB
  • sloc: cpp: 136,382; sh: 33; makefile: 5
file content (55 lines) | stat: -rw-r--r-- 1,284 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
### ceil

```
integer ceil(number value)
```

Returns the smallest integer value not less than the provided number.

It is a type error if the provided argument is not a number.

### Examples

```cpp
#include <iostream>
#include <jsoncons/json.hpp>
#include <jsoncons_ext/jsonpath/jsonpath.hpp>

// for brevity
using jsoncons::json; 
namespace jsonpath = jsoncons::jsonpath;

int main() 
{
    std::string data = R"(
    {
        "books":
        [
            {
                "title" : "A Wild Sheep Chase",
                "author" : "Haruki Murakami",
                "price" : 22.72
            },
            {
                "title" : "The Night Watch",
                "author" : "Sergei Lukyanenko",
                "price" : 23.58
            }            
        ]
    }
    )";

    json j = json::parse(data);

    json result1 = jsonpath::json_query(j, "$.books[?(ceil(@.price) == 23.0)]");
    std::cout << "(1) " << result1 << "\n\n";
    json result2 = jsonpath::json_query(j, "$.books[?(ceil(@.price*100) == 2358.0)]"); // (since 0.164.0)
    std::cout << "(2) " << result2 << "\n\n";
```
Output:
```
(1) [{"author":"Haruki Murakami","price":22.72,"title":"A Wild Sheep Chase"}]

(2) [{"author":"Sergei Lukyanenko","price":23.58,"title":"The Night Watch"}]
```