Re: D future ...

2016-12-29 Thread bauss via Digitalmars-d
On Thursday, 29 December 2016 at 22:53:51 UTC, Chris Wright wrote: On Thu, 29 Dec 2016 21:41:45 +, aberba wrote: Styling is similar to CSS but different. Wished someone would just go for a full blown CSS parser. CSS has proven its more capable and loved for client side styling/decoration.

The future of DMD's JSON output

2016-12-29 Thread Chris Wright via Digitalmars-d
DMD's JSON output hasn't changed since at least the switch from C++ to D. Is it deprecated or merely lacking maintainers? Is there a vision for where it will go?

Re: DIP10005: Dependency-Carrying Declarations is now available for community feedback

2016-12-29 Thread Andrei Alexandrescu via Digitalmars-d
On 12/28/16 9:47 PM, Chris Wright wrote: On Wed, 28 Dec 2016 15:48:46 +, deadalnix wrote: On Saturday, 24 December 2016 at 15:44:18 UTC, Andrei Alexandrescu wrote: A compiler enhancement can do this _without_ a language change. The language addition has additional benefits as described b

Re: D future ...

2016-12-29 Thread Chris Wright via Digitalmars-d
On Thu, 29 Dec 2016 21:41:45 +, aberba wrote: > Styling is similar to CSS but different. Wished someone would just go > for a full blown CSS parser. CSS has proven its more capable and loved > for client side styling/decoration. CSS is huge. It also brings in some assumptions about the layout

const(Rvalue) resolved to different overloads

2016-12-29 Thread Ali Çehreli via Digitalmars-d
I'm working on understanding how different qualifiers of the same type, the kinds of indirections that its members may have, and the expressions being lvalue versus rvalue affect function overload resolution. For example, the following program has - struct S with a member having const indirect

Re: D future ...

2016-12-29 Thread bauss via Digitalmars-d
On Thursday, 29 December 2016 at 21:41:45 UTC, aberba wrote: On Thursday, 29 December 2016 at 19:54:43 UTC, bauss wrote: [...] Styling is similar to CSS but different. Wished someone would just go for a full blown CSS parser. CSS has proven its more capable and loved for client side styling/

Re: D future ...

2016-12-29 Thread aberba via Digitalmars-d
On Thursday, 29 December 2016 at 19:54:43 UTC, bauss wrote: On Wednesday, 28 December 2016 at 12:33:58 UTC, Satoshi wrote: [...] I know this is kinda late to the game If you want to do GUI development and don't want to use any of the existing things because they're outdated or anything you

Re: D future ...

2016-12-29 Thread Arun Chandrasekaran via Digitalmars-d
On Thursday, 29 December 2016 at 19:54:43 UTC, bauss wrote: It can be found here: http://poisonengine.github.io/ 404, here is a working link -- https://github.com/PoisonEngine/poison-ui

Re: D future ...

2016-12-29 Thread bauss via Digitalmars-d
On Thursday, 29 December 2016 at 19:54:43 UTC, bauss wrote: It can be found here: http://poisonengine.github.io/ I apologize I meant here: https://poisonengine.github.io/poison-ui/

Re: D future ...

2016-12-29 Thread bauss via Digitalmars-d
On Wednesday, 28 December 2016 at 12:33:58 UTC, Satoshi wrote: On Wednesday, 28 December 2016 at 12:03:53 UTC, YAHB wrote: Just think to your strategy and try to be wise. Even Qt sources are available. There's at least 10 ways to waste a freelance commercial project. Qt is out of dated crap mos

Re: CTFE Status

2016-12-29 Thread Stefan Koch via Digitalmars-d
Hi Guys, I just figured out why array constants did not work as function arguments. It's because the array-constant undergoes a cast when used as slice, while an array literal can be taken as is. The currently newCTFE does not really provide the capabilities to handle casts. This is another