template struct Poco::TypeOneReplacer

Overview

TypeOneReplacer replaces the first occurence of the type T in Head with type R. Moreā€¦

Detailed Documentation

TypeOneReplacer replaces the first occurence of the type T in Head with type R.

Usage:

typedef TypeListType<char, int, float, int>::HeadType Type4; typedef TypeOneReplacer<Type4, int, double>::HeadType TypeR; (TypeR is a TypeList of char,double,float,int)