LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
Loading...
Searching...
No Matches
predicate_true.h
1
9#ifndef INCG7f5cb415f32d480ba60fcefa5f351637
10#define INCG7f5cb415f32d480ba60fcefa5f351637
11
12namespace lf::base {
13
20 public:
21 template <class... T>
22 bool operator()(T&&... /*unused*/) const {
23 return true;
24 }
25};
26
27} // namespace lf::base
28
29#endif // INCG7f5cb415f32d480ba60fcefa5f351637
A Function Object that can be invoked with any arguments and that always returns the value true.
bool operator()(T &&...) const
Contains basic functionality that is used by other parts of LehrFEM++.
Definition base.h:15