15 lines
532 B
C++
15 lines
532 B
C++
#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;
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
}
|