summaryrefslogtreecommitdiffhomepage
path: root/include/ocl/tproc/rope.hpp
blob: c0fd7568085fa2daab749f306bd1a507c5569fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2025, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-org/tproc

#ifndef __OCL_TPROC_ROPE_HPP
#define __OCL_TPROC_ROPE_HPP

#include <ocl/tproc/detail/rope_fwd.hpp>

namespace ocl::tproc::rope
{

	template <typename It, class Pred>
	It find(It begin, It end, Pred);

	template <typename It, class Callable>
	It find_if(It begin, It end, Callable);

	template <typename It, class Pred>
	size_t erase(It begin, It end, Pred);

	template <typename It, class Callable>
	size_t erase_if(It begin, It end, Callable);

} // namespace ocl::tproc

#endif // __OCL_TPROC_ROPE_HPP