CSCI 330 Lab 6: using C++ templates to create variadic and higher order functions

This semester we saw the use of variadic functions (functions that can accept any number of parameter) and higher order functions in common lisp.

Our objective in this lab is to use templates to create one C++ function that is variadic, another that is higher order, and one that is both variadic and higher order.

Objectives

Templates can be used in C++ to create higher order functions (an example is available in file higher.cpp in the examples subdirectory of the lab6 repo), and can be used to create variadic functions (an example is available in file variadic.cpp in the examples subdirectory of the repo), and discussion can be found on the lecture resources page at the end of the week for Mar 31-A4.

We'll apply these approaches to create three sets of function templates in our lab6.h:

In our lab6.cpp we'll include lab6.h, declare a variety of functions to serve as the higher order parameters to applyboth and chain, and set up a main routine to demonstrate that our three sets of function templates work correctly.


Specifications and design suggestions

We have three different functions to support, each implemented through a set of templates in the lab6.h file.


Testing

Testing of printAll is relatively straightforward: simply have your main routine include a variety of calls with differing numbers of parameters and types.

To test applyboth and chain, however, you'll need a few sets of unary functions that expect and return values of the same type. You can use existing C++ library functions for this or write your own or a combination of both. (E.g. log/sqrt/ceil for doubles, toupper/tolower for chars, etc.)