TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ operator=() [1/2]

template<typename BasicJsonType >
iter_impl & nlohmann::detail::iter_impl< BasicJsonType >::operator= ( const iter_impl< const BasicJsonType > &  other)
inlinenoexcept

converting assignment

Parameters
[in]otherconst iterator to copy from
Returns
const/non-const iterator
Note
It is not checked whether other is initialized.

Definition at line 11822 of file json.hpp.

11823 {
11824 if (&other != this)
11825 {
11826 m_object = other.m_object;
11827 m_it = other.m_it;
11828 }
11829
11830 return *this;
11831 }
internal_iterator< typename std::remove_const< BasicJsonType >::type > m_it
the actual iterator of the associated instance
Definition: json.hpp:12410