diff options
Diffstat (limited to 'include/ocl/tproc/rope.hpp')
| -rw-r--r-- | include/ocl/tproc/rope.hpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/ocl/tproc/rope.hpp b/include/ocl/tproc/rope.hpp index 9a072c9..c0fd756 100644 --- a/include/ocl/tproc/rope.hpp +++ b/include/ocl/tproc/rope.hpp @@ -8,14 +8,20 @@ #include <ocl/tproc/detail/rope_fwd.hpp> -namespace ocl::tproc +namespace ocl::tproc::rope { template <typename It, class Pred> - It find(It begin, It end, Pred callable); + It find(It begin, It end, Pred); template <typename It, class Callable> - It find_if(It begin, It end, Callable callable); + It find_if(It begin, It end, Callable); + + template <typename It, class Pred> + size_t erase(It begin, It end, Pred); + + template <typename It, class Callable> + size_t erase_if(It begin, It end, Callable); } // namespace ocl::tproc |
