A container class for testing template parameter type matching. More...
| Header: | #include <template_sugar.h> |
| void | append(const T &value) |
| void | prepend(T value) |
| void | replace(int index, const T &value) |
| MyContainer<T> | operator+(const MyContainer<T> &other) const |
T is the element type stored in the container.
MyContainer exercises the code path in findNodeForCursor where template parameter types must match between header parsing and \fn re-parsing.
Appends value to the container.
Prepends value to the container.
Replaces the item at index with value.
Returns a container that is the concatenation of this container and other.