Thread overview | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
June 26, 2014 EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
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 |
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Brian Schott | 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 GC
Very nice. Thank you!
|
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter Bright | On 06/27/2014 09:16 AM, Walter Bright via Digitalmars-d-announce wrote:
> 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 GC
>
> Very nice. Thank you!
Indeed, very nice!
but where is the dub package?
|
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Brian Schott | On 2014-06-26 23:26, Brian Schott wrote: > * Documentation generator that doesn't need the compiler Do you have any example of documentation generated with this tool? -- /Jacob Carlborg |
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Brian Schott | On Thursday, 26 June 2014 at 21:26:55 UTC, Brian Schott wrote:
> * Documentation generator that doesn't need the compiler
How does it relate to ddox?
|
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Brian Schott | 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. |
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kagamin | And then it will still be able to catch you between realloc and addRange. |
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Kagamin | 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 |
June 27, 2014 Re: EMSI has a Github page | ||||
---|---|---|---|---|
| ||||
Posted in reply to Dicebot | 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:
>> * Documentation generator that doesn't need the compiler
>
> How does it relate to ddox?
DDOX uses the compiler's JSON output. This new documentation generator only looks at the code.
|
Copyright © 1999-2021 by the D Language Foundation