NOTE: curious about both cases:
* thread local
* shared

On Tue, May 16, 2017 at 8:04 PM, Timothee Cour <thelastmamm...@gmail.com> wrote:
> what's the best D equivalent of C++11's function local static initialization?
> ```
> void fun(){
>   static auto a=[](){
>     //some code
>    return some_var;
>   }
> }
> ```
>
> (C++11 guarantees thread safety)

Reply via email to