www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Template Inheritance?

reply Jean-Louis Leroy <jl leroy.nyc> writes:
Today I came across a use case for template inheritance:

   template Namespace(N)
   {
     alias functions = ...; // using getMembers and getOverloads
   }

   template Aggregate(A) : Namespace(A)
   {
     // aggregate specific stuff, e.g.:
     alias base = ...;
   }

   template Module(M) : Namespace(M)
   {
     // module specific stuff
   }

Has this ever been considered?

I used a mixin template to get the effect I want...
Apr 12 2020
next sibling parent Les De Ridder <les lesderid.net> writes:
On Sunday, 12 April 2020 at 17:12:01 UTC, Jean-Louis Leroy wrote:
 Today I came across a use case for template inheritance:

   template Namespace(N)
   {
     alias functions = ...; // using getMembers and getOverloads
   }

   template Aggregate(A) : Namespace(A)
   {
     // aggregate specific stuff, e.g.:
     alias base = ...;
   }

   template Module(M) : Namespace(M)
   {
     // module specific stuff
   }

 Has this ever been considered?
I can't think of a reason to allow this other than (subjectively) easier code reuse, so I'm not sure this warrants a language feature.
Apr 12 2020
prev sibling parent bauss <jj_1337 live.dk> writes:
On Sunday, 12 April 2020 at 17:12:01 UTC, Jean-Louis Leroy wrote:
 Today I came across a use case for template inheritance:

   template Namespace(N)
   {
     alias functions = ...; // using getMembers and getOverloads
   }

   template Aggregate(A) : Namespace(A)
   {
     // aggregate specific stuff, e.g.:
     alias base = ...;
   }

   template Module(M) : Namespace(M)
   {
     // module specific stuff
   }

 Has this ever been considered?

 I used a mixin template to get the effect I want...
The only thing I can see this leading to is: Massive template abuse and even more obscure template error messages.
Apr 15 2020