MaMiCo
1.2
Loading...
Searching...
No Matches
tarch
utils
Utils.h
1
#pragma once
2
3
/* 2024
4
* @author Piet Jarmatz
5
*/
6
7
namespace
tarch
{
8
namespace
utils {
9
10
template
<
class
T,
class
T2>
bool
contains(T container, T2 element) {
return
std::find(container.begin(), container.end(), element) != container.end(); }
11
12
}
// namespace utils
13
}
// namespace tarch
tarch
Definition
Configuration.h:11
Generated by
1.13.2