pimap some doc

This commit is contained in:
Бычков Андрей
2022-08-30 18:15:13 +03:00
parent 3511fee459
commit db3de9904a
3 changed files with 31 additions and 5 deletions

View File

@@ -2082,9 +2082,9 @@ public:
}
//! \~english Returns a new array with all elements
//! that pass the test implemented by the provided function `test`.
//! that pass the test implemented by the provided function `bool test(const T & e)`.
//! \~russian Возвращает новый массив со всеми элементами,
//! прошедшими проверку, задаваемую в передаваемой функции `test`.
//! прошедшими проверку, задаваемую в передаваемой функции `bool test(const T & e)`.
//! \~\details
//! \~\code
//! PIDeque<int> v{3, 2, 5, 2, 7};