summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 09:41:01 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 09:41:01 +0100
commitda4277d08ff7331ca7c5c2f33e0d75c93bfaf42d (patch)
tree1cddcff4d41c6d8b528f4503c5b2f83ab2847d5e /include
parent932101ae44d6fc43e9facff898ed769d1d1099ec (diff)
feat: add pred types.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/ocl/tproc/rope.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ocl/tproc/rope.hpp b/include/ocl/tproc/rope.hpp
index c0fd756..c01106c 100644
--- a/include/ocl/tproc/rope.hpp
+++ b/include/ocl/tproc/rope.hpp
@@ -10,6 +10,11 @@
namespace ocl::tproc::rope
{
+ struct reverse_pred;
+ struct fast_pred;
+ struct lowercase_pred;
+ struct exact_pred;
+ struct stars_with_pred;
template <typename It, class Pred>
It find(It begin, It end, Pred);