PhysicsBasedAnimationToolkit 0.0.10
Cross-platform C++20 library of algorithms and data structures commonly used in computer graphics research on physically-based simulation.
Loading...
Searching...
No Matches
Overloaded.h
Go to the documentation of this file.
1
8
9#ifndef PBAT_COMMON_OVERLOADED_H
10#define PBAT_COMMON_OVERLOADED_H
11
12namespace pbat::common {
13
22template <class... Ts>
23struct Overloaded : Ts...
24{
25 using Ts::operator()...;
26};
27
28} // namespace pbat::common
29
30#endif // PBAT_COMMON_OVERLOADED_H
Common functionality.
Definition ArgSort.h:20
C++20 feature to allow multiple inheritance of operator() for lambdas.
Definition Overloaded.h:24