diff options
Diffstat (limited to 'include/ocl/tproc/rope.hpp')
| -rw-r--r-- | include/ocl/tproc/rope.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/ocl/tproc/rope.hpp b/include/ocl/tproc/rope.hpp index 86f1c5e..9a072c9 100644 --- a/include/ocl/tproc/rope.hpp +++ b/include/ocl/tproc/rope.hpp @@ -8,4 +8,15 @@ #include <ocl/tproc/detail/rope_fwd.hpp> +namespace ocl::tproc +{ + + template <typename It, class Pred> + It find(It begin, It end, Pred callable); + + template <typename It, class Callable> + It find_if(It begin, It end, Callable callable); + +} // namespace ocl::tproc + #endif // __OCL_TPROC_ROPE_HPP
\ No newline at end of file |
