Tagged Questions

38
votes
6answers
2k views

What are the current challenges of the D programming language?

I'm wondering how mature and stable D is, and if it might be a good replacement for C/C++. I know that there are currently two standard libraries (Phobos and Tango), so I assume that there might be ...
19
votes
9answers
2k views

Applications development with D language

For those who had developed applications with D, which libraries did you use to build your application? those libraries were good documented? did you use Tango? do you feel that D is ready to build ...
18
votes
6answers
1k views

D standard library

I've decided to learn D, and I'm wondering which standard library I should use. Should I use Phobos or Tango? What are the pros and cons of each?
10
votes
1answer
134 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) ...
9
votes
4answers
593 views

What is the current status of D standard libraries?

There are two of them Phobos and Tango. As far as I know they are redundant and incompatible. Are there any plans to join them? If so, when will it happen?
7
votes
1answer
250 views

memory paging with D

I'm using D/Tango for catalog indexing, is there any library to aid with memory (RAM) paging for a dictionary which is in memory and can go up to 10gb while performing indexing?
6
votes
2answers
84 views

Tango future vs D1 discontinuation

Knowing that D1 will be discontinued effective December 31, 2012, is it still worth it to continue using Tango given that the official distribution is under D1?
5
votes
2answers
149 views

Do Phobos (and/or Tango) have a set of predefined exception types?

The D documentation seems to be a bit messy, and I'm not able to find this information anywhere on the official site. I'm needing some common exception types (e.g. NotFiniteNumberException, ...
5
votes
2answers
289 views

D (Tango) Read all standard input and assign it to a string

In the D language how I can read all standard input and assign it to a string (with Tango library) ?
5
votes
2answers
174 views

How to run unit tests with DSSS and GDC?

I am very new to D and still battling trying to configure my toolchain. I am running Ubuntu Karmic and would like to use DSSS with GDC and Tango or TangoBos. Till now, I installed GDC from Ubuntu ...
3
votes
2answers
166 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
2answers
108 views

DMD Phobos-to-Tango conversion: va_arg - what is it? and what do I replace it with?

I'm trying to convert some Phobos code to its Tango equivalent, but I am stuck on this piece of code that I don't completely understand: OutBuffer codebuf; (...) void gen(Loc loc, uint opcode, uint ...
3
votes
1answer
100 views

D (Tango) can read and write ANSI files?

With D and Tango library can I read and write in the ANSI encoding ?
3
votes
1answer
179 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 color of a specific ...
3
votes
5answers
314 views

malloc and free in D/Tango not freeing memory?

here is a simple d/tango code in windows: module d_test.d; import tango.util.log.Trace; import tango.core.Thread; import tango.stdc.stdlib : malloc, free; void main() { ...
3
votes
1answer
190 views

D (and Tango) on PowerPC Linux

It's hard to search for D using Google, so I wasn't able to find a good answer: I have an old iBook G3 and I'd like to install Linux on it and use it to compile (and test) D programs written using ...
3
votes
5answers
928 views

How can I grab single key hit in D Programming Language + Tango?

I read this article and try to do the exercise in D Programming Language, but encounter a problem in the first exercise. (1) Display series of numbers (1,2,3,4, 5....etc) in an infinite loop. ...
2
votes
2answers
73 views

How to add tasks to a tango (D) ThreadPool asynchroniously ?

I am comparing a task queue/thread pool pattern system to an n-threads system in D. I'm really new to the D programming language but have worked with threads in C, Java, and Python before. I'm using ...
2
votes
2answers
218 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
2answers
307 views

Using external library in D

I have a dmd+Tango bundle on linux. Please give me the step by step information, how can I use an external library in D, for example zlib. I have compiled zlib. I have: "myzlib/lib/libz.a", ...
1
vote
0answers
63 views

DSSS error code 65280

I have a pomodoro timer that I am trying to compile using DSSS. It compiles when executing: dmd pomodoro.d However, when I execute dsss build From within the project directory, it complains: ...
1
vote
1answer
57 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
83 views

D Module Name Being Printed by Module Destructor

I've recently started learning D version 1, using the Tango library. I decided to write a small class Dout that wraps tango.io.Stdout, except it overrides opShl to better match C++'s << style ...
0
votes
1answer
50 views

How to read a char[] object into a tango.io.compress.ZlibStream?

I have a D program with Tango and I'm trying to uncompress a gzipped string. Unfortunately I don't have A stream to it, but the compressed data is stored in a char[]. How can I uncompress it using ...