On 03/05/2014 03:04 PM, Ali Çehreli wrote: > template Do(T...) > { > mixin DoImpl!(TypeTuple!(typeof(this), T)); Actually, TypeTuple is not needed there: mixin DoImpl!(typeof(this), T); Ali