Tagged Questions

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 ...
6
votes
1answer
90 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 ...
5
votes
2answers
113 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
141 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
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
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
87 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
78 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) { ...
1
vote
2answers
87 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
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 ...
0
votes
1answer
96 views

Replacing DMD's kernel32.lib to include missing functions

I'm using dmd 2.054 and optlink 8.00.12 on Windows 7. The following program: pragma(lib, "kernel32.lib"); extern(Windows) { uint LocaleNameToLCID(const(wchar)*, int); } void main() { auto ...