Tagged Questions
19
votes
2answers
762 views
DMD vs. GDC vs. LDC
What are the Pros/Cons of the different D Compilers? How is the performance and the standard compliance/D2 support? How well are debuggers supported? How good are the Error messages and is the IDE ...
12
votes
2answers
428 views
What is a “yield return” equivalent in the D programming language?
Here is a simple generator in C#.
IEnumerable<int> Foo()
{
int a = 1, b = 1;
while(true)
{
yield return b;
int temp = a + b;
...
10
votes
2answers
280 views
Elegant operator overloading in D
For a while I was confused about the direction of D's operator overloading, but now I realize it's a beautiful system... if It would only work with core types (int, float, etc). Consider the follow ...
10
votes
1answer
174 views
Extension Functions in D
I bought "The D Programming Language" a little while ago. Great book, very educational. However I'm having trouble trying to compile a language feature listed in the book: Extension Functions.
In the ...
8
votes
2answers
229 views
d programming language : standard input problem or misunderstanding?
Here is a simple program that reads lines from stdin and outputs them to stdout.
module test;
import std.stdio;
void main(string[] args)
{
foreach (int i, string line; lines(stdin)) {
...
7
votes
1answer
171 views
How to use “Template Constructors” in D?
The template documentation for D includes a small section called "Template Constructors". That section doesn't have any example or extensive documentation.
I'm attempting to use that feature (I'm ...
6
votes
1answer
92 views
D performance: union vs @property
I'm in the process of porting, enhancing, and D-atizing our reign SDK from C# to D. Currently working on the Vector2 math module.
Will there be any performance difference between the two structs ...
6
votes
0answers
105 views
Building tangobos to work with DMDScript / Getting ECMA Scripting to work with D1-Tango
I'm trying to install DMDScript-tango on my win32 D1-Tango setup. The version I'm using is the 0.99.9 Kai bundle .
When I try building it, I get the following error (among others)
...
5
votes
2answers
117 views
Parsing a file with D
I am new in D and would like to parse a biological file of the form
>name1
acgcgcagagatatagctagatcg
aagctctgctcgcgct
>name2
acgggggcttgctagctcgatagatcga
agctctctttctccttcttcttctagagaga
...
5
votes
1answer
112 views
Mono-D DMD compiler issues
With features like Code Completion and simple refactoring, writing D in Mono-D is almost as productive as writing C# in Visual Studios. Everything works great on Linux, just install Mono Develop, add ...
4
votes
1answer
143 views
How to use gtkD in Win7 and dmd (D2)?
I downloaded gtkD-1.5.1 and extracted to some gtkD directory. What do I do next ? I don't understand if I have to compile and link it to some lib or just link to it in my code ?
Edit: (@dsimcha)
...
4
votes
3answers
280 views
D programming on Fedora 16
I've recently installed Fedora 16 (which is great), mostly because I wanted to try LDC2 but also because Gnome Shell runs much smoother on Fedora than Ubuntu 11.10 (at least on my hardware).
LDC2 ...
4
votes
1answer
154 views
How to solve linker errors using DSFML2 with D2 on Ubuntu?
I'm running 64-bit Ubuntu Linux with DMDv2.052, trying to get application working with DSFML2, but I keep running into linker errors.
I built the SFML and CSFML libraries using shared libs + release ...
4
votes
2answers
86 views
std.algorithm.filter!() template with two parameters instead of just one?
Here is an example:
int[] arr = [ 1, 2, 3, 4, 5 ];
auto foo = filter!("a < 3")(arr);
assert(foo == [ 1, 2 ]); // works fine
Now I want to be able to parameterize the predicate, e.g.
int max = ...
4
votes
2answers
429 views
Writing a D (D2) binding for existing C libraries
I'd really like to get more into D, but the lack of good library support is really hindering me. Therefore I'd like to create some D bindings for existing C libraries I'd like to use. I've never done ...
4
votes
1answer
140 views
Associative array .remove[] calling core.stdc.stdio.remove in dmd 2.0
I have the following code in D
import std.stdio;
class Thing
{
// Fields
private string Name;
// Accessors
public string name() { return Name; }
}
class Place: Thing
{
// Fields
private ...
4
votes
4answers
404 views
DMD 2 on Snow Leopard
Has anyone tried the Digitalmars D compiler (version 2) on Snow Leopard? I'd like to upgrade but I'd rather have a working D compiler.
3
votes
3answers
90 views
Is there a way to create an elegant class-member window-function?
The Window-Procedure in the Win32 API must be static \ global function since it cannot take a class-object (the this) parameter. One can of-course use workarounds like a hWnd->object dictionary and ...
3
votes
1answer
65 views
dmd linker (OPTLINK) gives Error 42: Symbol Undefined when using extern
Linking the following two files gives me a link-error:
a.d:
import std.stdio;
extern string test ();
void main() {
writeln(test());
readln();
}
b.d:
string test () {
return "hello";
...
3
votes
2answers
90 views
Why aren't other modules being compiled?
I have two files: Main.d and ImportMe.d. Their purposes should be self-explanatory. They are in the same directory, and have no explicit module declaration. When I try to compile Main.d, though, I ...
3
votes
2answers
158 views
Garbage Collection, pointers and scope in D
Apologies in advance about the long post - I'm having a problem I think might be related to garbage collection.
I have a class that wraps DMDScript like this:
/**
* Wrapper class for the DMDScript ...
3
votes
1answer
100 views
overloading opIndexAssign
I seem to have some trouble overloading opIndexAssign in one of my classes.
I have a class; JSObject which is defined like this:
alias char[] String;
...
class JSObject : Dobject
{
...
3
votes
2answers
109 views
D2: switch statement and variables
In "The D Programming Language" book I see the following:
Usually the case expressions are
compile-time constants, but D allows
variables, too, and guarantees
lexical-order evaluation up to ...
2
votes
1answer
67 views
How to pass ref/out function pointer to a function?
I want to instantiate a function pointer:
static void GetProc (out function f) {
auto full = demangle(f.mangleof);
auto name = full[full.lastIndexOf('.')+1..$];
f = cast(typeof(f)) ...
2
votes
2answers
88 views
How to painlessly initialize function pointers?
I want to load Win32 API functions using Runtime.loadLibrary and GetProcAddress(...). Using mixin:
template GetProcA(alias func, alias name_in_DLL)
{
const char[] GetProcA = func ~ ` = ...
2
votes
1answer
80 views
D opBinary()() overloading bug?
When I try and overload opBinary on a simple Vector struct, I get a strange and meaningless error:
struct Vector(T)
{
T x, y;
Vector opBinary(string op)(Vector!float vector)
{
...
2
votes
1answer
67 views
What problems can be expected using D1 and dlls?
What problems can I expect using a dll compiled using dmd compiler (D1) if c++ program calls that dll and that c++ program is multithreaded?
2
votes
2answers
204 views
Using OpenSSL library in D
I have trouble using the OpenSSL library with dmd+tango bundle on Ubuntu 10.04.
I have compilled OpenSSL 1.0.0d. I've got files:
/usr/local/ssl/lib/libssl.a
/usr/local/ssl/lib/libcrypto.a
So, I'm ...
2
votes
3answers
321 views
Digital Mars D compiler; acquiring ASM output
I am reading the book from Andrei Alexandrescu about the D programming language. He's an excellent writer and does a pretty good job at explaining aspects of the D language. I however find certain ...
2
votes
1answer
1k views
Compiling with DMD on 64bit Linux or Linking with 32bit object files
What is the best way to compile programs with DMD on a 64bit machine? It doesn't need to compile to 64Bit code. I know about GDC, but want to work with D2 also. There is also chroot, but am hoping for ...
1
vote
2answers
89 views
D implicitly cast Vector(T) types
Compare code fragments A:
struct Vector2(T) {
// ...
auto opCast(U)() {
return U(x, y);
}
void opOpAssign(string op)(Vector2 vector) {
mixin ("x" ~ op ~ "= ...
1
vote
1answer
58 views
mixin gives error
The example at: http://www.d-programming-language.org/mixin.html, appears below:
template GenStruct(char[] Name, char[] M1) {
const char[] GenStruct = "struct " ~ Name ~ "{ int " ~ M1 ~ "; }";
} ...
1
vote
1answer
54 views
dfl_debug.lib not found
I'm trying to compile my first application using Forms in D, using the DFL / Tango libraries, but the compiler first attempt said: DFL lib files not found.
Then I tried to compile the libs, and got ...