-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from njoy/develop
Adding the overload struct to tools
- Loading branch information
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
// empty include | ||
#include "tools/overload.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef NJOY_TOOLS_OVERLOAD | ||
#define NJOY_TOOLS_OVERLOAD | ||
|
||
// system includes | ||
|
||
// other includes | ||
|
||
namespace njoy { | ||
namespace tools { | ||
|
||
/** | ||
* @brief Overload struct for collecting lambdas for std::visit | ||
* | ||
* For example: | ||
* | ||
* auto value = std::visit( | ||
* tools::overload{ [] ( const Foo& ) -> std::string | ||
* { return "Foo"; }, | ||
* [] ( const Bar& ) | ||
* { return "Bar"; } }, | ||
* variant ); | ||
*/ | ||
template < class... Types > struct overload : Types... { | ||
|
||
using Types::operator()...; | ||
}; | ||
template < class... Types > overload( Types... ) -> overload< Types... >; | ||
|
||
} // tools namespace | ||
} // njoy namespace | ||
|
||
#endif |