This commit is contained in:
jeanlemotan
2024-07-02 18:06:33 +02:00
commit 8297b0b45f
157 changed files with 24865 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include "tl/detail/prologue.h"
namespace tl
{
//////////////////////////////////////////////////////////////////////////
template <typename Container, typename OutputIt> auto copy(const Container& container, OutputIt d_first) noexcept -> OutputIt;
template <typename Container, typename OutputIt, typename UnaryPredicate> auto copy_if(const Container& container, OutputIt d_first, const UnaryPredicate& predicate) noexcept -> OutputIt;
//////////////////////////////////////////////////////////////////////////
}