JSON for Modern C++  3.7.0

◆ operator/ [1/3]

template<typename BasicJsonType >
json_pointer operator/ ( const json_pointer< BasicJsonType > &  lhs,
const json_pointer< BasicJsonType > &  rhs 
)
friend
Parameters
[in]lhsJSON pointer
[in]rhsJSON pointer
Returns
a new JSON pointer with rhs appended to lhs
Example^^ The example shows the usage of operator/. ^^ json_pointer__operator_add_binary.cpp
Output (play with this example online):^^
"/foo/bar/baz"
"/foo/fob"
"/foo/42"
^^ The example code above can be translated with
g++ -std=c++11 -Isingle_include doc/examples/json_pointer__operator_add_binary.cpp -o json_pointer__operator_add_binary 
Complexity^^ Linear in the length of lhs and rhs.
See also
operator/=(const json_pointer&) to append a JSON pointer
Since
version 3.6.0

Definition at line 10124 of file json.hpp.