Tagged Questions

Phobos is the official runtime and standard library of the D programming language.

learn more… | top users | synonyms

36
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 ...
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
170 views

D naming conventions: How is Phobos organized?

I'm making my own little library of handy functions and I'm trying to follow Phobos's naming convention but I'm getting really confused. How do I know where things would fit? Example: If there was a ...
10
votes
2answers
280 views

Why does Phobos use enum for constants?

Why does Phobos use enum to define constants? For example, in std.math: enum real E = 2.7182818284590452354L; Why not use a global immutable? What are the advantages/disadvantages of enum over ...
9
votes
4answers
580 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?
6
votes
2answers
227 views

How to get single keystroke in D2 (Phobos)?

Is there a simple, cross-platform way to get a single keystroke in D2 using Phobos? For instance, a "Press any key to continue..." prompt, or a Brainfuck interpreter. All the methods I've tried ...
6
votes
1answer
205 views

Binary Search in D 2.0 (Phobos)?

Is it just me, or is there no binary search function in Phobos? I have a pre-sorted array that I want to search with my own comparator function, but I can't find anything in std.algorithms or ...
6
votes
3answers
261 views

Stack-based object instantiation in D

I'm learning D, and am confused by an error I'm getting. Consider the following: module helloworld; import std.stdio; import std.perf; ptrdiff_t main( string[] args ) { auto t = new ...
5
votes
1answer
133 views

How interface this C code to D?

How should this C be convert to D : typedef const gchar* (*GModuleCheckInit) (GModule *module); typedef void (*GModuleUnload) (GModule *module); Is this correct ? alias const gchar* function( ...
5
votes
1answer
177 views

D etc.c.curl examples

D, being the lesser known language of the bunch, has very little going for it in the way of libraries. I am trying to download a file, and the way I can see to do that with DMD 2 and phobos is with ...
5
votes
2answers
142 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
1answer
355 views

D/Phobos Style guide

I've just begun looking at the phobos source, and it's littered with several different styles and commented out code. The style guide on the web side is very small, and I only found broken links from ...
4
votes
2answers
83 views

What's the proper usage of approxEqual()?

At first I thought I could rely on the maximum relative difference only, but I was wrong. For example, if a = 0.0, and b = 0.5, their relative difference is 1.0. In this case approxEquals(lhs, rhs, ...
4
votes
4answers
145 views

Simple Set implementation in D?

I was fishing around in D's standard library looking for a Set implementation, and I only found these: BinaryHeap RedBlackTree These both would work fine, if I could only figure out how to use ...
4
votes
2answers
143 views

What's the status of phobos' std.xml

I'm working on the beginnings of porting my php based OOP web framework to the d language and I'm having some trouble figuring out if it is safe to rely on phobos' std.xml classes to read xml from ...
4
votes
3answers
388 views

Any active open source projects in the D language out there

I'm looking to increase my skills and efficiency in d. Having "played" with the language on and off for quite some time, I realize I am nowhere near as good with it as I'd like to be yet. I'd like to ...
4
votes
2answers
187 views

Checking in D if a string is in array?

How do I check for a string occurance in an array? I mean sure I can loop, but is there a standard function? at first I did: if(str in ["first", "second", "third"]) but it complained that in only ...
3
votes
1answer
78 views

Can I rely on the presence of shell()?

std.process has a nice shell() function. import std.process; import std.stdio; void main() { string Output = shell("ls ."); writeln("The contents of this directory are:"); write(Output); ...
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
2answers
282 views

Read Text File in D

Is there any one-size-fits-all (more or less) way to read a text file in D? The requirement is that the function would auto-detect the encoding and give me the entire data of the file in a consistent ...
3
votes
1answer
117 views

Using std.algorithm.map with member functions in D2

I have: Foo foo = new Foo(); foreach (i; 0..10) { Bar bar = foo.getBar(i); ... } I want to be able to instead say (equivalently): foreach (bar; foo.getAllBars()) { ... } How do I go about ...
2
votes
1answer
77 views

How convert a D array to C variadic?

I would like convert an array in D of the form: string[] arrayStr = [ "hi, "is fun", "use D programming" ]; I have a C function which takes a C variadic: void c_func( const char* format, ... ); ...
2
votes
1answer
106 views

Return dynamic type

i know template like T add(T)(T a, Tb){ return a + b; } But this need to user ask which type will be return, me i want compute inside mehtod which type will be returned like: T getField( ...
2
votes
2answers
139 views

Extension methods in D?

Hey folks, I'm trying to get these bits of syntax to make sense to me: S[] split(S)(S s) if (isSomeString!S) { ... } and string join(in string[] words, string sep) { ... } (As seen in ...
1
vote
1answer
20 views

How to encapsulate an existing array using D2's phobos std.range

I would like to encapsulate an existing data array ( created by Python's Numpy Lib ) into an Array like object in the D2 Language... without having to copy the array data... I already use Python's ...
1
vote
1answer
116 views

How do I create a 2D Array in D?

This should be simple enough, but it's not. import std.container, std.stdio; void main(){ alias Array!double _1D; alias Array!_1D _2D; _1D a = _1D(); _2D b = _2D(); a.insert(1.2); ...
0
votes
3answers
155 views

Do a multilanguage application?

I would like to know how do a multilanguage application. It seem it is possible by using flag -J but they are no document for this feature. link given in this page ...