Re: DirectX bindings

2016-12-17 Thread evilrat via Digitalmars-d-announce

On Sunday, 3 November 2013 at 05:27:24 UTC, evilrat wrote:


https://github.com/evilrat666/directx-d



A long awaited update - v0.10.0 is out!

Be wary there is still a lot of things untested, and one may 
encounter access violation or random crashes.


It is great to see community expanding and the language growing 
up.

Thanks everyone who contributed.


Re: Linker-hacking out the D runtime

2016-12-17 Thread Iain Buclaw via Digitalmars-d-announce
On 18 December 2016 at 01:04, sarn via Digitalmars-d-announce
 wrote:
> As it stands, the -betterC flag is still immature and only removes a bit of
> the D runtime.

-betterC removes module info and module helpers, not the D runtime.
You will find it in gdc with the more appropriately named command line
switch -fno-moduleinfo.  ;-)


Linker-hacking out the D runtime

2016-12-17 Thread sarn via Digitalmars-d-announce
As it stands, the -betterC flag is still immature and only 
removes a bit of the D runtime.  I've been playing around a bit 
to see what could be possible.  To do that, I've had to do some 
linker hacking to make code that's completely free of D runtime 
dependencies.


I thought I'd write something up to help other people experiment 
with this stuff:

https://theartofmachinery.com/2016/12/18/d_without_runtime.html

Let's make a better -betterC :)


Re: unDE 0.1.0: original file manager, image and text viewer

2016-12-17 Thread thedeemon via Digitalmars-d-announce

On Thursday, 15 December 2016 at 20:16:10 UTC, unDEFER wrote:

Hello, my dear friends!
So many days you answers on many my questions.
And today I glad to present my work: unDE 0.1.0.
It is very original file manager, image and text viewer.
More information: http://unde.sourceforge.net/en/ch24.html
Video with English subtitles: https://youtu.be/29zuxU9eyXo


Interesting, but requiring Cygwin on Windows is a no go. You're 
reducing your potential Windows userbase by 99%.


Re: concepts v0.0.1

2016-12-17 Thread Jacob Carlborg via Digitalmars-d-announce

On 2016-12-16 21:51, Atila Neves wrote:

Since my phobos PR for better static assertions was clearly never
getting merged (https://github.com/dlang/phobos/pull/3677), I moved the
code to dub instead:

http://code.dlang.org/packages/concepts

Basically, as long as you pair up your template constraints (e.g. isFoo)
with a suitably named function that should compile (e.g. checkFoo, not a
lambda), then you can write this:

@models!(Foo, isFoo)
struct Foo {
//...
}

And in the case that isFoo is false, you'll get to know _why_ it didn't
compile instead of an AssertError that leaves you confused.

At least it used to and the unit tests pass so I'm assuming it still
does :P


It's not very well tested ;). When a check fails I get this error:

Error: can only import from a module, not from package 
std.algorithm.searching.countUntil


After fixing that to a proper selective import I get:

Error: template instance moduleName!P template 'moduleName' is not defined

Adding an import for std.traits will fix that. Then after fixing all 
that it seems to work properly :)


Asserting that something does not compile is very risky because it does 
not tell you why it didn't compile. One should always first compile 
without __traits(compiles) to verify that the correct error is reported.


--
/Jacob Carlborg