PIString doc

This commit is contained in:
Andrey
2022-04-27 15:49:30 +03:00
parent 6322b248a8
commit 7325e12e30
5 changed files with 533 additions and 450 deletions

View File

@@ -611,7 +611,7 @@ public:
//! \~\sa \a rend(), \a begin(), \a end()
inline reverse_iterator rbegin() {return reverse_iterator(this, pid_size - 1);}
//! \~english Returns a reverse iterator to the element
//! \~english Returns a reverse iterator to the element.
//! following the last element of the reversed array.
//! \~russian Обратный итератор на элемент, следующий за последним элементом.
//! \~\details ![rbegin, rend](doc/images/pivector_rbegin.png)

View File

@@ -77,8 +77,13 @@ public:
second = std::move(value1);
}
Type0 first /*! \~english First element \~russian Первый элемент */;
Type1 second /*! \~english Second element \~russian Второй элемент */;
//! \~english First element.
//! \~russian Первый элемент.
Type0 first;
//! \~english Second element.
//! \~russian Второй элемент.
Type1 second;
};
//! \~english Compare operator with PIPair.