Re: automem v0.3.5 - now with more vector (like std::vector, not Physics)!

2018-10-01 Thread Atila Neves via Digitalmars-d-announce
On Sunday, 30 September 2018 at 19:54:07 UTC, ikod wrote: On Thursday, 20 September 2018 at 14:57:42 UTC, Atila Neves wrote: If you've never heard of automem before, I wrote it to have C++-style smart pointers in D that I could use in @nogc code: http://code.dlang.org/packages/automem

Re: automem v0.3.5 - now with more vector (like std::vector, not Physics)!

2018-09-30 Thread ikod via Digitalmars-d-announce
On Thursday, 20 September 2018 at 14:57:42 UTC, Atila Neves wrote: If you've never heard of automem before, I wrote it to have C++-style smart pointers in D that I could use in @nogc code: http://code.dlang.org/packages/automem Sorry for asking here. Shouldn't this code work? import

Re: automem v0.3.5 - now with more vector (like std::vector, not Physics)!

2018-09-20 Thread 12345swordy via Digitalmars-d-announce
On Thursday, 20 September 2018 at 14:57:42 UTC, Atila Neves wrote: If you've never heard of automem before, I wrote it to have C++-style smart pointers in D that I could use in @nogc code: [...] Official bindings to std::vector will soon be added by manu. (I think)

automem v0.3.5 - now with more vector (like std::vector, not Physics)!

2018-09-20 Thread Atila Neves via Digitalmars-d-announce
If you've never heard of automem before, I wrote it to have C++-style smart pointers in D that I could use in @nogc code: http://code.dlang.org/packages/automem I needed something like a std::vector that can be @nogc so I wrote it. I wondered whether or not to put it in a collections