template struct Poco::TypeAllEraser

Overview

TypeAllEraser erases all the occurences of the type T in Head. Moreā€¦

Detailed Documentation

TypeAllEraser erases all the occurences of the type T in Head.

Usage:

typedef TypeListType<char, int, float, int>::HeadType Type4; typedef TypeAllEraser<Type4, int>::HeadType Type2; (Type2 is a TypeList of char,float)