/* * File: fix.hpp * Purpose: Financial Information Exchange function and headers in C++ * Author: Amlal El Mahrouss (amlal@nekernel.org) * Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License. */ #ifndef OCL_FIX_HPP #define OCL_FIX_HPP #include #include #include namespace ocl::fix { template Pred find(It begin, It end, Pred callable); 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