12 lines
333 B
C++
12 lines
333 B
C++
#pragma once
|
|||
|
|
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
namespace stl_algorithms {
|
||
|
|
|
||
|
|
[[nodiscard]] auto reverse_copy(const std::vector<int>& data) -> std::vector<int>;
|
||
|
|
[[nodiscard]] auto countGreaterThan(const std::vector<int>& data, int threshold) -> int;
|
||
|
|
[[nodiscard]] auto everyEven(const std::vector<int>& data) -> bool;
|
||
|
|
|
||
|
|
} // namespace stl_algorithms
|