D is a systems programming language developed by Walter Bright and since 2006, Andrei Alexandrescu.

learn more… | top users | synonyms

0
votes
2answers
35 views

Redirecting from command line to a D program

I want to redirect a .txt file from the command line into an exetuable written in D. $ ./myprogram < data.txt This text file consist of numbers that I want to print to the screen. So far, my ...
0
votes
1answer
62 views

How to check global events inside an infinite loop within a class?

I'm writing a little program to perform some database operations and have a small question about design. Part of my program watches a log file for changes and this involves code which is wrapped up ...
9
votes
1answer
317 views

Effective D : best practices and design patterns

A really interesting conference was given about D-Specific Design Patterns and in the D community, some people thought it could be a starting point for a book dealing about effective coding ...
0
votes
1answer
43 views

D lang work with Gtk

I have trouble with gtk: I cloned from git: https://github.com/gtkd-developers/GtkD.git make & sudo make install added -I/usr/local/include/d to /etc/dmd.conf dmd main.d Code: //main.d ...
3
votes
3answers
101 views

What is the difference between const and immutable in D?

What is the difference between the const and immutable type qualifiers in D?
0
votes
1answer
59 views

Xamarin Studio fails to execute code with login shell in Mac Terminal

I'm new to Xamarin on the Mac, and I'm running into some issues running my code. I don't think it should matter, but I'm using the D language plugin to develop my code. When Terminal is set to Shells ...
0
votes
1answer
110 views

D - casting char[] to const char[]

I have to use tango. Im reading from file a text which is an instruction into char[] table. Then I need to execute it through the mixin. The mixin as argument need string or const char[]. How can I ...
2
votes
2answers
122 views

It seems that my array isn't garbage-collected

I'm new to D. I wrote a simple file server using http://arsdnet.net/web.d/cgi.d.html I send a file (size about xxMB) like this : import std.file; void SendFile(string request) { auto bytes = ...
1
vote
1answer
42 views

libcurl issue when using D's std.net.curl on Mac

I'm trying to get up to speed using libcurl with D on Mac. I'm using the latest dmd2 compiler (DMD64 D Compiler v2.062). The following example compiles and works fine on Windows: import ...
0
votes
1answer
93 views

Example from D book isn't working, odd error

All, I'm using Xamarin Studio 4.08 and Mono-D to program D with the DMD2 compiler. When I try to compile the following (from The D Programming Language- Alexandrescu, 2010- Page 10): import ...
0
votes
1answer
47 views

Use of Atomic Shared Structures in D

How do I make a word-sized shared variable atomic in D? I'm currently looking at core.atomic but I don't see any wrapper template named something like atomic. Isn't the interface designed in the same ...
0
votes
0answers
56 views

Visual D code template

Visual D code template looks like this: module main; import std.stdio; int main(string[] argv) { writeln("Hello D-World!"); return 0; } Is it possible to change the template into: module ...
0
votes
1answer
80 views

Using inotify why is my watched file ignored?

I'm writing a file watcher in D on Linux using the inotify subsystem for event notification. I've written some code below and i'm nearly there but i have a problem that the watched file is switched to ...
0
votes
0answers
76 views

Why isn't CodeBlocks letting me compile this example Allegro program?

Basically I'm having a problem with getting an Allegro binding (D + Allegro) to work with Code:Blocks. I think it's a settings problem, but I'm not sure where. So here's what I've done so far... ...
0
votes
2answers
60 views

Looking for a DMD 1.076/Tango bundle (Win32)

Willing to harness Tango library along with the very last release of DMD 1 compiler (v1.076), I searched the net in vain for the bundle. Please suggest me any URLs I might overlooked or any relevant ...
2
votes
2answers
188 views

Using D for a realtime application?

I am considering using d for my ongoing graphics engine. The one thing that turns me down is the GC. I am still a young programmer and I probably have a lot of misconceptions about GC's and I hope ...
2
votes
3answers
277 views

Laziness in C++11

Do you know how to perform a lazy evaluation of string, like in this D snippet: void log(lazy string msg) { static if (fooBarCondition) writefln(…) /* something with msg */ } Actually, the ...
4
votes
2answers
134 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??
0
votes
1answer
49 views

GtkD noob: Executable broken after linking with GtkD.lib

I've installed all combinations of GtkD with the Gtk-Runtime found here: https://code.google.com/p/gtkd-packages/downloads/list except for trying GtkD 1.7.2 because it had errors on build. My setup ...
1
vote
1answer
60 views

Value changes when manipulating subclass by their superclass

I'm encoutering a strange problem. When passing a subclass to a method accepting a superclass, which is ok because subclass is a superclass, variables of the subclass seems to change ... With a more ...
3
votes
2answers
185 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
129 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 ...
2
votes
4answers
99 views

Inheritance: Evaluating In Derived Class's Scope?

Is there a design pattern in any mainstream language for a derived class to inherit code from a base class and evaluate that code in the derived class's scope? For example (using pseudo-C++ syntax): ...
0
votes
2answers
101 views

Is there a difference in the ways of converting from integer to integer?

Is there a difference when I want to convert an integer(for example 32-bit integer/int) to another integer type(for example 8-bit integer/byte). Here is some example code for the two ways I can ...
4
votes
1answer
76 views

When and how should I use `const` and `immutable` in D?

In many modern languages const correctness should be used to clarify interfaces and intent as well as to provide some opportunities to the compiler to optimize. In D there's the cool feature of really ...
1
vote
1answer
71 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
2answers
89 views

How to use SWIG for D from C++ on Windows?

I want to use LEAP Motion in D. Therefore It doesn't have C library and It has only C++ library. I tried SWIG 2.0.9 below command. swig -c++ -d -d2 leap.i This command output Leap.d, Leap_im.d, ...
2
votes
2answers
61 views

How to undo a popFront a range

What is the standard way to "undo" a popFront operation? I realize that this would not work on all ranges, but for things like arrays, say you had int[] a = [ 1, 2, 3 ]; And you did a.popFront() ...
1
vote
1answer
108 views

Import module in D from a sister folder?

Suppose I have the following directory structure for the project: myproj/dir1/file1.d myproj/dir2/file2.d myproj/main.d How can I import main and file2 modules within the source file file1.d?
0
votes
1answer
110 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 ...
1
vote
2answers
112 views

Porting Python to D: urllib

I wrote a program in Python recently (Windows 64-bit v3.3.1), and am attempting to port it to D. The problem I have run into is that I make use of the urllib module in Python, in particular, ...
3
votes
2answers
175 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 ...
0
votes
1answer
107 views

Socket - receive an exact amount of data

I'm trying to make a socket manager for a program. My problem is that for my needs I need to retrieve an exact amount of data from the socket to a buffer. 1) Using static arrays Making a static ...
0
votes
1answer
93 views

Trying to write Quicksort in D, get OutOfMemoryError

Currently trying to learn D programming language. Wrote this little quicksort algo, which returns a OutOfMemoryError when running with the shipped example. import std.stdio; import std.algorithm; ...
2
votes
1answer
121 views

Key Input using GtkD

I'm a beginner of both gtk and GtkD. Now, I'm trying to get input from keyboard with reference to this . But, It seems that three years have made some changes in Toolkits. I wrote code below. However, ...
0
votes
1answer
69 views

How to use Direlect3 with Mono-D

I was wondering if in Mono-D I could use Direlect3, I have everything downloaded here: https://github.com/aldacron/Derelict3/blob/master/README.markdown but I can not find out how to use it in ...
2
votes
1answer
90 views

D type inference depends on order of template arguments

T maybe(alias nullCheck, T)(T expr, T def) { if (nullCheck(expr)) { return def; } else { return expr; } } auto tokens = chomp(readln()) ...
4
votes
1answer
123 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
2answers
109 views

Linking glfw and D

I'm trying to use glfw 2.7.8 with the Digital Mars D compiler version 2.0. I followed the instructions from the example makefile on copying the .lib files to dm/lib folder, but I have not had ...
4
votes
1answer
81 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 ...
1
vote
1answer
95 views

Unable to pass interface as pointer in D language

I have no idea what is going on here. Please explain. Code... import std.stdio; void main(string[] args) { ClassObject ss1 = new ClassObject("First Class"); writeln(ss1.produce()); ...
0
votes
2answers
135 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
149 views

Language Introspection for the D language

Is there something like lint for the D language or is there any framework to quickly build a checker? Edit 1 In retrospect i remember that i took a look a week ago at the tool DScanner. The tool can ...
0
votes
1answer
81 views

MonoDevelop can not open any d files

I am using Monodevelop for writing D programs, and whenever I open a file I get this error. Does anyone know about this?
3
votes
1answer
169 views

D language Socket.receive()

I wrote a socket server using D on Windows and now I want to port it on Linux. Here is code summary: /* * this.rawsocks - SocketSet * this.server - Socket * this.clients - array of custom client ...
44
votes
3answers
2k views

What are the differences between concepts and template constraints?

I want to know what are the semantic differences between the C++ full concepts proposal and template constraints (for instance, constraints as appeared in Dlang or the new concepts-lite proposal for ...
3
votes
1answer
361 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 = ...
1
vote
2answers
117 views

Write/read class objects to/from file, D-Lang

I'm trying to write/read a class object from/to a file. I'm new to D and I just want to play a little bit around with it. Is there a Class/Function to write/read an object to/from a file? I'm looking ...
3
votes
0answers
116 views

Is there a state machine framework which implements UML semantics for the D programming language?

Is there a state machine framework in the D programming language which implements UML semantics similar to boost.MSM, boost.statecharts, QP or Machine Objects ?
3
votes
1answer
102 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; ...

1 2 3 4 5 20