diff --git a/src/include/ranges/crange.cc.h b/src/include/ranges/crange.cc.h index 095d7e8..8674476 100644 --- a/src/include/ranges/crange.cc.h +++ b/src/include/ranges/crange.cc.h @@ -8,7 +8,7 @@ namespace CNORXZ { template - decltype(auto) CIndex::format(const Sptr& ind) const + decltype(auto) CIndex::reformat(const Sptr& ind) const { return ind; } diff --git a/src/include/ranges/crange.h b/src/include/ranges/crange.h index 218eb61..d69593f 100644 --- a/src/include/ranges/crange.h +++ b/src/include/ranges/crange.h @@ -44,7 +44,7 @@ namespace CNORXZ COpRoot xpr(const Sptr& _this) const; template - decltype(auto) format(const Sptr& ind) const; + decltype(auto) reformat(const Sptr& ind) const; template decltype(auto) slice(const Sptr& ind) const; diff --git a/src/include/ranges/index_base.h b/src/include/ranges/index_base.h index 74e6f7a..e625047 100644 --- a/src/include/ranges/index_base.h +++ b/src/include/ranges/index_base.h @@ -56,7 +56,7 @@ namespace CNORXZ decltype(auto) xpr(const Sptr& _this) const { return THIS().xpr(_this); } //template - //decltype(auto) format(const Sptr& ind) const { return THIS().format(ind); } + //decltype(auto) reformat(const Sptr& ind) const { return THIS().format(ind); } //template //decltype(auto) slice(const Sptr& ind) const { return THIS().slice(ind); } diff --git a/src/include/ranges/prange.cc.h b/src/include/ranges/prange.cc.h index 25624e5..fc478b5 100644 --- a/src/include/ranges/prange.cc.h +++ b/src/include/ranges/prange.cc.h @@ -153,7 +153,7 @@ namespace CNORXZ template template - decltype(auto) PIndex::format(const Sptr& ind) const + decltype(auto) PIndex::reformat(const Sptr& ind) const { return ind; } diff --git a/src/include/ranges/prange.h b/src/include/ranges/prange.h index 0f2a069..e1788ea 100644 --- a/src/include/ranges/prange.h +++ b/src/include/ranges/prange.h @@ -48,7 +48,7 @@ namespace CNORXZ decltype(auto) xpr(const Sptr>& _this) const; template - decltype(auto) format(const Sptr& ind) const; + decltype(auto) reformat(const Sptr& ind) const; template decltype(auto) slice(const Sptr& ind) const; diff --git a/src/include/ranges/srange.cc.h b/src/include/ranges/srange.cc.h index 7efd4f9..59f9cce 100644 --- a/src/include/ranges/srange.cc.h +++ b/src/include/ranges/srange.cc.h @@ -143,7 +143,7 @@ namespace CNORXZ template template - decltype(auto) SIndex::format(const Sptr& ind) const + decltype(auto) SIndex::reformat(const Sptr& ind) const { return ind; } diff --git a/src/include/ranges/srange.h b/src/include/ranges/srange.h index 25ecc68..2ba3a4a 100644 --- a/src/include/ranges/srange.h +++ b/src/include/ranges/srange.h @@ -47,7 +47,7 @@ namespace CNORXZ decltype(auto) xpr(const Sptr>& _this) const; template - decltype(auto) format(const Sptr& ind) const; + decltype(auto) reformat(const Sptr& ind) const; template decltype(auto) slice(const Sptr& ind) const; diff --git a/src/include/ranges/urange.cc.h b/src/include/ranges/urange.cc.h index 9fbb02d..2d9bc11 100644 --- a/src/include/ranges/urange.cc.h +++ b/src/include/ranges/urange.cc.h @@ -147,7 +147,7 @@ namespace CNORXZ template template - decltype(auto) UIndex::format(const Sptr& ind) const + decltype(auto) UIndex::reformat(const Sptr& ind) const { return ind; } diff --git a/src/include/ranges/urange.h b/src/include/ranges/urange.h index f208193..ef24abb 100644 --- a/src/include/ranges/urange.h +++ b/src/include/ranges/urange.h @@ -49,7 +49,7 @@ namespace CNORXZ decltype(auto) xpr(const Sptr>& _this) const; template - decltype(auto) format(const Sptr& ind) const; + decltype(auto) reformat(const Sptr& ind) const; template decltype(auto) slice(const Sptr& ind) const;