template struct Poco::TypeDuplicateEraser
Overview
TypeDuplicateEraser erases all but the first occurence of the type T in Head. Moreā¦
Detailed Documentation
TypeDuplicateEraser erases all but the first occurence of the type T in Head.
Usage:
typedef TypeListType<char, int, float, int>::HeadType Type4; typedef TypeDuplicateEraser<Type4, int>::HeadType Type3; (Type3 is a TypeList of char,int,float)