4
votes
4answers
125 views
When does template instantiation bloat matter in practice?
It seems that in C++ and D, languages which are statically compiled and in which template metaprogramming is a popular technique, there is a decent amount of concern about template …
2
votes
2answers
254 views
The new C++: D or Go? [closed]
Today I was discussing with some friends about the new language that Google came up with: Go and I told them that I like D more.
Both languages claim to be systems programming lan …
6
votes
2answers
126 views
Are there other languages besides D with static if?
I think D's static if is an interesting language feature. That prompts my question: Are there are other examples of compiled languages in which the compiler has a strong notion of …
2
votes
5answers
253 views
What’s the most efficient way to compare two blocks of memory?
I need a comparison function for blocks of memory for doing binary searches on arrays of bytes in the D programming language. It does not need to have any useful semantics. It on …
4
votes
3answers
94 views
How to use a C library from D?
Today I heard about the D programming and that it is compatible to C code. Nevertheless I haven't found any information on whether it is possible to use C libraries like GTK or Por …
34
votes
24answers
5k views
Why isn’t the ‘D’ language picking up?
Anybody using language 'D'?
Why isn't it more popular?
2
votes
4answers
74 views
How do you go about asking a question at digitalmars.com? [closed]
I've been playing around with D recently and came across a problem using the templates. As far as I can see, the Digital mars site is the best place to ask questions on learning th …
3
votes
3answers
118 views
Word Tearing on x86
Under what circumstances is it unsafe to have two different threads simultaneously writing to adjacent elements of the same array on x86? I understand that on some DS9K-like archi …
4
votes
3answers
58 views
Some D template questions
Hi, I've been playing around recently with the D language and I have a quick question about templates.
I'm inserting characters and strings into an existing string in code and cam …
2
votes
3answers
160 views
Emulating fork() on Win32? [closed]
Possible Duplicates:
What’s the best way to duplicate fork() in windows?
What is the closest thing windows has to fork()?
Is there a good way to emulate Unix fork( …
3
votes
1answer
159 views
How do I get gdb working with D programs under linux?
I have a patched gdb 6.8, but I can't get any debugging to work. Given this test file:
import std.stdio;
void main()
{
float f = 3.0;
int i = 1;
writeln(f, " ", i);
…
2
votes
1answer
89 views
D 1.0 (Tango) Move mouse; simulate keyboard presses etc.
Hey, I'm using D 1.041 with Tango 0.99.8 and was wondering how I would go about moving the mouse and simulating keyboard presses and getting infos from the screen, for example the …
41
votes
24answers
4k views
Does the D programming language have a future?
I stumbled several times over D and really asked myself why it isn't more popular.
D is a systems programming language. Its focus is on combining the power and high performance …
6
votes
4answers
458 views
Usage of D in the Field
I have tried to find some information on D. I do especially like this comparison with C++ to get an overview on what it is.
Now I am asking myself: how often D is used in the fiel …
1
vote
2answers
121 views
Windows API function equivalents (SetCursorPos, GetCursorPos, mouse_event, keybd_event …) for Linux (X11)?
I was wondering if there were equivalents of the above mentioned functions for Linux (X11) - I can't seem to find them.
