digitalmars.D.announce - EMSI has a Github page
- Brian Schott (11/11) Jun 26 2014 https://github.com/economicmodeling
- Walter Bright (2/12) Jun 27 2014 Very nice. Thank you!
- Robert Schadek via Digitalmars-d-announce (3/16) Jun 27 2014 Indeed, very nice!
- Jacob Carlborg (4/5) Jun 27 2014 Do you have any example of documentation generated with this tool?
- Dicebot (2/3) Jun 27 2014 How does it relate to ddox?
- Brian Schott (3/6) Jun 27 2014 DDOX uses the compiler's JSON output. This new documentation
- Kagamin (4/4) Jun 27 2014 https://github.com/economicmodeling/containers/blob/master/src/container...
- Kagamin (2/2) Jun 27 2014 And then it will still be able to catch you between realloc and
- Brian Schott (3/7) Jun 27 2014 The issue tracker is located here:
https://github.com/economicmodeling Stuff that's been made available: * D implementation of the DDoc macro processor * Documentation generator that doesn't need the compiler - No more requirement to use all the -I options to just get docs. - Template constraints don't vanish. - size_t doesn't turn into ulong. - Javascript-based offline search. * Containers library backed by std.allocator - Less sitting around waiting for the GC
Jun 26 2014
On 6/26/2014 2:26 PM, Brian Schott wrote:https://github.com/economicmodeling Stuff that's been made available: * D implementation of the DDoc macro processor * Documentation generator that doesn't need the compiler - No more requirement to use all the -I options to just get docs. - Template constraints don't vanish. - size_t doesn't turn into ulong. - Javascript-based offline search. * Containers library backed by std.allocator - Less sitting around waiting for the GCVery nice. Thank you!
Jun 27 2014
On 06/27/2014 09:16 AM, Walter Bright via Digitalmars-d-announce wrote:On 6/26/2014 2:26 PM, Brian Schott wrote:Indeed, very nice! but where is the dub package?https://github.com/economicmodeling Stuff that's been made available: * D implementation of the DDoc macro processor * Documentation generator that doesn't need the compiler - No more requirement to use all the -I options to just get docs. - Template constraints don't vanish. - size_t doesn't turn into ulong. - Javascript-based offline search. * Containers library backed by std.allocator - Less sitting around waiting for the GCVery nice. Thank you!
Jun 27 2014
On 2014-06-26 23:26, Brian Schott wrote:* Documentation generator that doesn't need the compilerDo you have any example of documentation generated with this tool? -- /Jacob Carlborg
Jun 27 2014
On Thursday, 26 June 2014 at 21:26:55 UTC, Brian Schott wrote:* Documentation generator that doesn't need the compilerHow does it relate to ddox?
Jun 27 2014
On Friday, 27 June 2014 at 12:31:09 UTC, Dicebot wrote:On Thursday, 26 June 2014 at 21:26:55 UTC, Brian Schott wrote:DDOX uses the compiler's JSON output. This new documentation generator only looks at the code.* Documentation generator that doesn't need the compilerHow does it relate to ddox?
Jun 27 2014
https://github.com/economicmodeling/containers/blob/master/src/containers/dynamicarray.d#L72 Does this work? You try to remove new range instead of old one. Also you should remove old range only after you added new range, so that GC won't catch you in the middle.
Jun 27 2014
And then it will still be able to catch you between realloc and addRange.
Jun 27 2014
On Friday, 27 June 2014 at 20:33:22 UTC, Kagamin wrote:https://github.com/economicmodeling/containers/blob/master/src/containers/dynamicarray.d#L72 Does this work? You try to remove new range instead of old one. Also you should remove old range only after you added new range, so that GC won't catch you in the middle.The issue tracker is located here: https://github.com/economicmodeling/containers/issues
Jun 27 2014