Thread overview
Blog post on the joys of hand-translating C++'s std::function to D
Mar 07, 2019
Atila Neves
Mar 07, 2019
Mike Parker
Mar 07, 2019
Mike Parker
Mar 07, 2019
Walter Bright
Mar 08, 2019
Jacob Carlborg
Mar 08, 2019
Atila Neves
March 07, 2019
C++ is hard:

https://atilaoncode.blog/2019/03/07/the-joys-of-translating-cs-stdfunction-to-d/
March 07, 2019
On Thursday, 7 March 2019 at 15:45:50 UTC, Atila Neves wrote:
> C++ is hard:
>
> https://atilaoncode.blog/2019/03/07/the-joys-of-translating-cs-stdfunction-to-d/

Reddit:
https://www.reddit.com/r/programming/comments/ayf40t/the_joys_of_translating_cs_stdfunction_to_d/
March 07, 2019
On Thursday, 7 March 2019 at 17:27:42 UTC, Mike Parker wrote:
> On Thursday, 7 March 2019 at 15:45:50 UTC, Atila Neves wrote:
>> C++ is hard:
>>
>> https://atilaoncode.blog/2019/03/07/the-joys-of-translating-cs-stdfunction-to-d/
>
> Reddit:
> https://www.reddit.com/r/programming/comments/ayf40t/the_joys_of_translating_cs_stdfunction_to_d/

It's also on Hacker News. Someone beat me to it.
March 07, 2019
On 3/7/2019 9:27 AM, Mike Parker wrote:
> On Thursday, 7 March 2019 at 15:45:50 UTC, Atila Neves wrote:
>> C++ is hard:
>>
>> https://atilaoncode.blog/2019/03/07/the-joys-of-translating-cs-stdfunction-to-d/
> 
> Reddit:
> https://www.reddit.com/r/programming/comments/ayf40t/the_joys_of_translating_cs_stdfunction_to_d/ 

Atila, please add an AMA post there!
March 08, 2019
On 2019-03-07 16:45, Atila Neves wrote:
> C++ is hard:
> 
> https://atilaoncode.blog/2019/03/07/the-joys-of-translating-cs-stdfunction-to-d/ 

Using ".mangleof" and "pragma(mangle)" on the same symbol looks like something that could easily break.

-- 
/Jacob Carlborg
March 08, 2019
On Friday, 8 March 2019 at 10:27:54 UTC, Jacob Carlborg wrote:
> On 2019-03-07 16:45, Atila Neves wrote:
>> C++ is hard:
>> 
>> https://atilaoncode.blog/2019/03/07/the-joys-of-translating-cs-stdfunction-to-d/
>
> Using ".mangleof" and "pragma(mangle)" on the same symbol looks like something that could easily break.

Maybe. Who knows how else to do it though.