TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ operator/ [1/3]

template<typename BasicJsonType >
json_pointer operator/ ( const json_pointer< BasicJsonType > &  lhs,
const json_pointer< BasicJsonType > &  rhs 
)
friend

create a new JSON pointer by appending the right JSON pointer at the end of the left JSON pointer

Parameters
[in]lhsJSON pointer
[in]rhsJSON pointer
Returns
a new JSON pointer with rhs appended to lhs

@liveexample{The example shows the usage of operator/.,json_pointer__operator_add_binary}

@complexity Linear in the length of lhs and rhs.

See also
see operator/=(const json_pointer&) to append a JSON pointer
Since
version 3.6.0

Definition at line 12707 of file json.hpp.

12709 {
12710 return json_pointer(lhs) /= rhs;
12711 }
json_pointer(const std::string &s="")
create JSON pointer
Definition: json.hpp:12591