template struct Poco::TypeOneEraser

Overview

TypeOneEraser erases the first occurence of the type T in Head. Moreā€¦

Detailed Documentation

TypeOneEraser erases the first occurence of the type T in Head.

Usage:

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