Is it possible to use static if in a template structure to have some member functions only for specific types?
E.g.:

struct Foo(T)
{
   ...

   T get() { ... }

   static if(isMutable!T)
   {
      void set(T x) { ... }
   }
}


Reply via email to