summaryrefslogtreecommitdiffhomepage
path: root/include/ocl
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-02 09:33:09 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-02 09:33:09 +0100
commitd0decd01ec7c9e3f3d493cc6aa9ec87fd34a6722 (patch)
tree2bfb635f9015a1ea1d8e7b992be66ca6c9d32fd7 /include/ocl
parent0ac8ded5b0046be772461e65bcb81dc09c4db810 (diff)
feat: final API implementation of free functions in progress.v1.1.0-develop
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/ocl')
-rw-r--r--include/ocl/fix.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ocl/fix.hpp b/include/ocl/fix.hpp
index 53c7e4f..856623d 100644
--- a/include/ocl/fix.hpp
+++ b/include/ocl/fix.hpp
@@ -21,6 +21,12 @@ namespace ocl::fix
template <typename It, class Pred>
Pred find_if(It begin, It end, Pred callable);
+ template <typename It, class Pred>
+ typename Pred::size_type erase(It begin, It end, Pred callable);
+
+ template <typename It, class Pred>
+ typename Pred::size_type erase_if(It begin, It end, Pred callable);
+
} // namespace ocl::fix
#endif