I have a personal project that has an elegant solution that requires
both true multiple inheritance of classes (which pretty much limits my
language choices to C++ and Python) and type-based function
overloading.
Now, while this makes it sound like I have to resign myself to C++,
which I am not a
On Feb 24, 11:44 pm, Stefan Behnel <[EMAIL PROTECTED]> wrote:
> Allen Peloquin wrote:
> > class B
> > {
> > fun(A x, A y, A z)...
> > fun(A1 x, A y, A z)...
> > }
>
> > class B1
> > {
> > fun(A1 x, A y, A z)...
> >