diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-02 09:33:09 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-02 09:33:09 +0100 |
| commit | d0decd01ec7c9e3f3d493cc6aa9ec87fd34a6722 (patch) | |
| tree | 2bfb635f9015a1ea1d8e7b992be66ca6c9d32fd7 | |
| parent | 0ac8ded5b0046be772461e65bcb81dc09c4db810 (diff) | |
feat: final API implementation of free functions in progress.v1.1.0-develop
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | include/ocl/fix.hpp | 6 |
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 |
