D2 (Version 2) is the successor of the initial version of the D programmming language developed by Walter Bright and since 2006, Andrei Alexandrescu.

learn more… | top users | synonyms

2
votes
2answers
54 views

Why can I not implement default constructors for structs in D?

Writing code like struct S { this() // compile-time error { } } gives me an error message saying default constructor for structs only allowed with @disable and no body. Why??
3
votes
2answers
131 views

How to read a string character by character as a range in D?

How to read a line as a range in D? I know there is ranges in D, but I just wondered how to simply iterate over each character of a string using this concept? To show what I'm after, the similar ...
5
votes
2answers
89 views

duck typing in D

I'm new to D, and I was wondering whether it's possible to conveniently do compile-time-checked duck typing. For instance, I'd like to define a set of methods, and require that those methods be ...
1
vote
1answer
67 views

dlang inheritance design for types passed between threads

I'm writing a multithreaded program in the D programming language, but am pretty new to the language. There is a restriction on types passed between threads using the Tid.send() and receive[Only]() ...
0
votes
1answer
91 views

Create a fake OpenGL context for sake of loading extensions

I've been playing with Derelict3&glfw to use OpenGL in D according to this, if I want to use extensions, I need to create a context first, and this is done by creating a window with glfw and set ...
3
votes
2answers
139 views

Updated GUI libraries for D in 2013?

I'm developing a game in D. So far I really appreciate the D language, and for the most libraries there are good bindings. Now, for the editor I'm in search for a portable GUI library. wxD or DWT ...
-6
votes
1answer
74 views

how would you set a Score to the screen in a java 2d shooting game for how many enemies have been killed ? [closed]

I need the exact code in my program to be able to set a score when the enemy collides with the bullet basically how many enemies have been killed. i just want a count of how many bullets have been ...
4
votes
1answer
118 views

Reading an array of elements with readf in D

Is it possible to read an array (of given length) of elements using readf in D, without looping? And is it possible if the length is not known? I tried using the same syntax used for formatted ...
4
votes
1answer
78 views

Removing any element from an associative array

I'd like to remove an(y) element from an associative array and process it. Currently I'm using a RedBlackTree together with .removeAny(), but I don't need the data to be in any order. I could use ...
0
votes
2answers
118 views

Is there a mature GUI library for D2 which does not rely on any DLLs (for windows only)

I have a small firmware update program written in D which works great from the command line but I would like to give it a GUI. All a really need is a progress bar, a few dialogs and a status bar. It ...
3
votes
1answer
351 views

Object.Error: Access Violation when printing result of std.algorithm.cartesianProduct

I'm using DMD 2.062 for x86. module test; private enum test1 { one, two, three, } private enum test2 { one, two, three, } auto ct = ...
3
votes
1answer
97 views

Why patching a string using .ptr fails under Linux64 but not under Win32?

Why the small sample below fails under Linux64 but not under Windows32? module test; import std.string, std.stdio; void main(string[] args) { string a = "abcd=1234"; auto b = &a; ...
2
votes
1answer
124 views

Type-inferring a delegate argument with unknow number of known-typed arguments

If you define a function that accepts a delegate, D can type-infer the delegate arguments when you call that function. So if I write a function with the signature: void foo(void delegate(int,string) ...
4
votes
2answers
134 views

Which D compilers will perform tail-call optimization on this function?

string reverse(string str) pure nothrow { string reverse_impl(string temp, string str) pure nothrow { if (str.length == 0) { return temp; } else ...
1
vote
1answer
76 views

Can the name of the class.tupleof() items be retrieved?

When looping in the result of AnObject.tupleof, I can get the size or the value as a string but can I get more advanced infos over the tuple items (edit) and particularly the original data name (as ...
1
vote
2answers
145 views

Joining strings at compile time

I want to join file names and image formats at compile time. The following example doesn't work, because string[] can't be evaluated at compile I suppose... immutable imageFormats = ["bmp", "jpg", ...
1
vote
3answers
111 views

View Assembly from DMD with line numbers

How can I look at the assembly code for a specific line in the source code? I tried compiling my source with DMD and -g and -gc (on Windows) and used objconv to output the assembly of the .obj and ...
3
votes
1answer
102 views

Array identity - is

I'm having problems understanding array identity in D. Object s = null; // or new Object auto a = [s]; auto b = [s]; writeln(a is b); // > false writeln(a == b); // > true This prints false, ...
3
votes
2answers
124 views

Compile-time generated 2D array in D

In my program I need to generate array with powers' (from 0 to 5) sum of numbers from 1 to 100,000. So I tried to compile this code: const enum size_t MAX_ARRAY_SIZE = 100_000 + 1; const enum size_t ...
2
votes
2answers
102 views

User defined attributes and compile time evaluation for setting class member variables

I'm trying to learn a little more about D's compile time evaluation and understand how its templates, mixins, attributes, etc all work. One thing I'd like to try and do is figure out an elegant way ...
5
votes
1answer
132 views

Continue is not inside a loop

I was writing a method for TCPServer. I've written a code as below: // thread run protected void threadRun(){ // continue running. don't stop while(true){ try{ try{ ...
1
vote
1answer
28 views

Error: template std.array.Appender!(string).Appender.put does not match any functio

I get an error Error: template std.array.Appender!(string).Appender.put does not match any function template declaration I am trying to use the Appender. Can you tell me how to make it work? ...
1
vote
1answer
64 views

object.Error when comparing associative arrays containing structs in D

I am trying to compare two associative arrays, each containing some structs, to see if they are equal to each other, but I am getting an error and I don't know why. It happens if the structs have an ...
2
votes
1answer
77 views

Using std.range.Lockstep as an input range

Duplicating http://forum.dlang.org/thread/arlokcqodltcazdqqlby@forum.dlang.org to compare answer speed :) I basically want to be able to do stuff like this: auto result = map!( (a, b) => a+b )( ...
4
votes
3answers
131 views

Removing all occurrences of a given value from an array in D

Suppose that I have an array. I want to remove all the elements within the array that have a given value. Does anyone know how to do this? The value I am trying to remove may occur more than once and ...
2
votes
1answer
108 views

Reading packets off a fragmented byte stream with ranges?

I believe I sort of know ranges, but I have no real idea for when and where to use them, or how. I fail to "get" ranges. Consider this example: Let's assume we have a network handler, that we have ...
3
votes
3answers
172 views

Statically linking SQLite with DMD (Windows x86)

I've tried to statically link with sqlite3 without success. I'm using the 'etc.c.sqlite3' header, and the sqlite3 amalgamation. To create the .lib file I've tried both VC++ and MinGW-gcc, both of ...
1
vote
1answer
83 views

Converting void* array of arguments to static types

If I have a class such as the following: import std.traits; class Test(T) if(isCallable!T) { alias ParameterTypeTuple!T Parameters; alias ReturnType!T delegate(Parameters) DelegateType; ...
5
votes
3answers
159 views

Why Isn't dchar the Standard Character Type in D?

Just browsing the digitalmars.D.learn forum, and D-related question on StackOverflow, it seems to me that a major point of mistakes for a beginner D programmer (me included) is the difference in usage ...
5
votes
2answers
131 views

Are There Any Hidden Costs to Passing Around a Struct With a Single Reference?

I was recently reading this article on structs and classes in D, and at one point the author comments that ...this is a perfect candidate for a struct. The reason is that it contains only one ...
5
votes
1answer
73 views

error instantiating redBlackTree template

I'm having trouble instantiating a RedBlackTree container with chars, but it works with ints: import std.stdio; import std.container; void main() { auto r1 = redBlackTree!(int)(); // works ...
4
votes
1answer
138 views

Cannot Slice Take!R from std.range in D?

I'm trying to use the slice operator to obtain a slice of the return value of the take function from std.range. My code: auto tempChunk = ['a', 'b', 'c', 'd']; auto a = tempChunk.take(3); ...
1
vote
1answer
118 views

How to include static library built from D sources in Makefile.am?

I'm writing a utility library libdog-dev for programming with D language, here is the Makefile.am: sited2dir = /usr/include/d2/site lib32dir = ${libdir}/i386-linux-gnu # lib64dir = ...
2
votes
1answer
279 views

Can't install DMD 2.060 on OS X 10.6.8

I am planning to try D for the first time in my life. I have a MacBook Pro running OS X 10.6.8 (Snow Leopard). I went on the D downloads page and clicked on the link for the dmd 2.060 installer for ...
0
votes
2answers
111 views

Const-ness issues: how to traverse a linked list of Objects in D?

If I have a class like: class Node { string id; const Node next; } How do I find, say, the id of the last Node in the linked list? string lastID(const Node node) { ??? }
0
votes
1answer
66 views

Generate algebraic expression at compile time in D

Let's consider a function defined as follows: f(n, x) = F(n, x, f(n-1, x)) f(0, x) = g(x) In my program the value of n is always known at compile time. I want to optimize my program and avoid loops ...
2
votes
1answer
142 views

Cannot convert function to delegate

I have this function private ulong Html(ubyte[] data) { return data.length; } that I want to convert to delegate by using toDelegate() function. I have tried it: client.onReceive = ...
0
votes
1answer
67 views

In the D language, how do you perform a binary search on an array of structs?

e.g, if you have a sorted array of the struct: struct Item{ int val; string property; } How would you go about using these with assumeSorted so that you could then search on Item.val? All ...
7
votes
1answer
151 views

Does the garbage collector preserve an array that is referenced only by raw pointers?

I'd like to allocate an array of elements from the garbage collected heap, and access those elements only through raw pointers. Is the garbage collector capable of reclaiming that block of memory ...
3
votes
1answer
87 views

Convert a function to delegate

I have a property that accepts a delegate: http.onReceiveHeader = (in char\[\] key, in char\[\] value) { }. I want to use a separed function instead of, e.g: void do_something(char[] key, char[] ...
2
votes
1answer
69 views

New compilation error for a basic Windows Application with D 2.060

I use d-ide to develop with D. With D 2.059 compiler version, the project Windows template compile et run like a charm. With D 2.060 compiler version, the project Windows template does not compile ...
1
vote
1answer
354 views

Parsing the date format: “Wdy, DD-Mon-YY HH:MM:SS GMT” to struct Date in D language

I have a date in this formart: Wdy, DD-Mon-YY HH:MM:SS GMT that I need to parse and convert it to struct std.date.Date or equivalent to. I have written a very simple function by using split()s ...
6
votes
2answers
179 views

Why use @property in D?

I figured out by trying that struct PropertyTest { @property int x() { return val; } @property void x( int newVal ) { val = newVal; } void test() { int j; j = x; ...
0
votes
1answer
96 views

Pass or no by reference?

I'm writing a MyClassCollection. It's an array,that will store a lot of instances of MyClass. The array is declared as the following: MyClass[] myClassInstances; that by Add(MyClass ins) method I ...
2
votes
3answers
66 views

How to fix this union size/alignment requirement under DMD 2.060

A D2 source code containing the following snippet can be compiled under DMD 2.059 union Prefix { char[9] data; align(1) struct { uint fileno; uint lineno; char delim; }; } static ...
1
vote
1answer
72 views

Request for explanation of an idiomatic D2 construct

I often come accros the following construct that I don't quite grasp in a D2 source code: alias uint SymbolRef; struct SymbolTable { alias entries this; SymbolRef startSymbol; Symbol[] ...
2
votes
2answers
118 views

DMD: link to libc.a? Or core.simd info?

I'm guessing No, but I want to here from the community because I'm not real experienced with this stuff. Is it possible to link with /etc/lib/libc.a (I'm on Linux x64) with DMD? My reason is, I'm ...
6
votes
2answers
178 views

Why can I not concatenate a const(char)* to a string in D?

The code string bar = "Hello "; const(char) * foo = "world!"; bar ~= foo; fails to compile in the third line. Why? What elegant alternatives do I have? The error output is Error: cannot append ...
1
vote
1answer
98 views

What class members do Throwable and Exception have in the D programming language?

I'm particularly interested, how I can produce nested exception and how I can access those afterwards when I handle them. A link to some documentation would be appreciated. I have already tried to ...
0
votes
1answer
94 views

SHA1 hexdigest to long

I have this Python Code (hexdigest is a SHA1): d = long(hexdigest, 16) if d >> 159: return "-%x" % ((-d) & (2**160-1)) return "%x" % d and I need this code translated into D. I tried ...

1 2 3 4 5