From d0decd01ec7c9e3f3d493cc6aa9ec87fd34a6722 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 2 Jan 2026 09:33:09 +0100 Subject: feat: final API implementation of free functions in progress. Signed-off-by: Amlal El Mahrouss --- include/ocl/fix.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include') 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 Pred find_if(It begin, It end, Pred callable); + template + typename Pred::size_type erase(It begin, It end, Pred callable); + + template + typename Pred::size_type erase_if(It begin, It end, Pred callable); + } // namespace ocl::fix #endif -- cgit v1.2.3