TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ operator!=()

template<typename BasicJsonType >
template<typename IterImpl , detail::enable_if_t<(std::is_same< IterImpl, iter_impl >::value||std::is_same< IterImpl, other_iter_impl >::value), std::nullptr_t > = nullptr>
bool nlohmann::detail::iter_impl< BasicJsonType >::operator!= ( const IterImpl &  other) const
inline

comparison: not equal

Precondition
The iterator is initialized; i.e. m_object != nullptr.

Definition at line 12168 of file json.hpp.

12169 {
12170 return !operator==(other);
12171 }
bool operator==(const IterImpl &other) const
comparison: equal
Definition: json.hpp:12132