PIVector reshape... not works

This commit is contained in:
Andrey
2022-04-19 16:33:13 +03:00
parent 8c6db321cf
commit d4294e3d95
3 changed files with 66 additions and 46 deletions

View File

@@ -159,4 +159,14 @@ template <typename C> _PIReverseWrapper<C> PIReverseWrap(const C & c) {return _P
#define piForeachRC(i, c) for(const i : PIReverseWrap(c))
#define piForeachCR piForeachRC
//! \~\brief
//! \~english Reshape order enum for reshape() function.
//! \~russian Порядок обхода для функции изменения размерности reshape().
//! \~ \sa \a PIVector::reshape(), \a PIDeque::reshape()
enum ReshapeOrder {
ReshapeByRow,
ReshapeByColumn
};
#endif // PICONTAINERS_H