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
/* | |
* An experiment in creating a generic builder for C++. | |
* | |
* This is inspired by the following post: | |
* | |
* https://marcoarena.wordpress.com/2021/10/25/the-self-growing-builder/ | |
* | |
* The changes from the post are that the tag structs are used to hold | |
* the argument values and there is a single generic builder function | |
* that accepts the tag structs. These changes remove a lot of the |