Thread overview
CppCast interview
Oct 31, 2015
Iain Buclaw
Oct 31, 2015
Iain Buclaw
Oct 31, 2015
Jack Stouffer
October 30, 2015
https://www.reddit.com/r/programming/comments/3qs888/cppcast_d_with_andrei_alexandrescu/

@35:00: "One great thing about being part of several programming language communities is that you get to see how a whole community can miss a point."


Andrei
October 31, 2015
On 30 Oct 2015 4:25 am, "Andrei Alexandrescu via Digitalmars-d-announce" < digitalmars-d-announce@puremagic.com> wrote:
>
>
https://www.reddit.com/r/programming/comments/3qs888/cppcast_d_with_andrei_alexandrescu/
>
> @35:00: "One great thing about being part of several programming language
communities is that you get to see how a whole community can miss a point."
>
>
> Andrei

You're a walking sound bite generator.


October 31, 2015
On 31 Oct 2015 10:04 am, "Iain Buclaw" <ibuclaw@gdcproject.org> wrote:
>
> On 30 Oct 2015 4:25 am, "Andrei Alexandrescu via Digitalmars-d-announce" <
digitalmars-d-announce@puremagic.com> wrote:
> >
> >
https://www.reddit.com/r/programming/comments/3qs888/cppcast_d_with_andrei_alexandrescu/
> >
> > @35:00: "One great thing about being part of several programming
language communities is that you get to see how a whole community can miss a point."
> >
> >
> > Andrei
>
> You're a walking sound bite generator.

On the note of inlining C++ into D.  I guess this is the domain where we will have to rely on LTO taking you there.  Not an advertisable feature though.

Catching foreign language exceptions.  It's supported but we only act as a messenger.  Intercept the thrown exception and pass it on, with the expectation that higher up the backtrace is the C++ or whatever language catch handler to deal with it.  I don't see catching or throwing C++ exceptions from D ever happening.  At least, you need more help than just mangling and layout.


October 31, 2015
On Friday, 30 October 2015 at 03:23:17 UTC, Andrei Alexandrescu wrote:
> https://www.reddit.com/r/programming/comments/3qs888/cppcast_d_with_andrei_alexandrescu/
>
> @35:00: "One great thing about being part of several programming language communities is that you get to see how a whole community can miss a point."
>
>
> Andrei

Great interview! It's a shame though that you didn't point people to your "Generic Programming Must Go" talk when you were talking about std.allocator and design by introspection.