Phobos is the official runtime and standard library of the D programming language.
9
votes
1answer
327 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 ...
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 = ...
2
votes
1answer
153 views
std.regex.regex() not pure. Why?
In D std.regex.regex() is not pure:
import std.regex;
pure void test() // test.d(5): Error: pure function 'test' cannot call impure function 'regex'
{
auto r = regex(r"patern123", "g");
}
Why?
...
2
votes
1answer
152 views
Shortest way to concatenate strings in D outside writefln()?
I repeadetly need to concatenate of format strings, and is wondering what is the shortest (or easiest to read) way to concatenate strings outside of the writefln() function, in D?
That is, I like the ...
1
vote
1answer
105 views
Check if string starts with a substring in D / phobos?
I haven't so far found how I can most easily check if a string starts with a certain character in D.
I want something like:
if (my_str.startswith("/")) {
// Do something
}
The closest I ...
1
vote
2answers
122 views
Read data from a webpage in D?
how to simply open an url and read the data from a webpage with D?
(I prefer phobos over tango, if needing to use standard lib functionality)
2
votes
1answer
80 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 )( ...
1
vote
3answers
141 views
D redirect stdout to function
I want to redirect all console output to my own GUI console, including all calls to C write functions.
Things I've tried:
Creating a new stream class, but stdio.stdout is a file and you can't ...
4
votes
1answer
141 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
126 views
What is the reasoning behind the design of std.complex? [closed]
unittest
{
immutable float a = 1.1, b = 1.2;
auto c1 = complex(a,b);
auto r1 = c1 + c1; // error, not mutable
}
Which means that I can have Complex!(immutable float), but I can never use its ...
7
votes
1answer
168 views
std.algorithm.joiner(string[],string) - why result elements are dchar and not char?
I try to compile following code:
import std.algorithm;
void main()
{
string[] x = ["ab", "cd", "ef"]; // 'string' is same as 'immutable(char)[]'
string space = " ";
char z = joiner( x, ...
7
votes
4answers
260 views
How do you use ranges in D?
Whenever I try to use ranges in D, I fail miserably.
What is the proper way to use ranges in D? (See inline comments for my confusion.)
void print(R)(/* ref? auto ref? neither? */ R r)
{
foreach ...
7
votes
3answers
273 views
Is D backwards compatible with C if you use the C libraries?
If I import the std.c libaries instead of including the libraries in C, would C code compile with a D compiler, or are there other backwords compatibility issues?
1
vote
1answer
75 views
Unicode conversion
Config:
OS: Windows 7 (32 bits)
DMD 2.58 using Phobos standard library
My Intent:
I began to port a old package (10 modules) written back in 2007. It featured a full unicode support and I want ...
4
votes
3answers
651 views
integer to string conversion in D
How in D would I cast integer to string?
Something like
int i = 15
string message = "Value of 'i' is " ~ toString(i); // cast(string) i - also does not work
Google brought me the answer on how to ...
1
vote
2answers
211 views
d language concurrency with recursion
I have been trying to implement a factorial function using the actor model with the d language.
My objective is to use to create actor to calculate each part alone e spawn a new actor to make the ...
2
votes
4answers
305 views
how to decode ubyte[] to a specified encoding?
The problem is: how to parse a file when encoding is set at runtime?
encoding could be: utf-8, utf-16, latin1 or other
The goal it is to convert ubyte[] to a string from the selected encoding. ...
3
votes
4answers
254 views
D- how to verify that an IP address is valid
I'm writing an HTTP parsing library (because I couldn't find a good one in pure D), and I needed to be able to validate IP addresses (for the URI field), so I wrote a couple functions to validate IP ...
5
votes
3answers
521 views
Remove white space characters from a char[] array in D
What is the recomended way to remove white space from a char[] in D. for example using dmd 2.057 I have,
import std.stdio;
import std.string;
import std.algorithm;
char[] line;
int main(){
line ...
6
votes
1answer
185 views
Can I functionally concatenate a number and string?
I am trying to make a pure function that embeds a number in a string. The obvious concatenation methods do not work:
pure string foo(immutable int bar)
{
return "Number: " ~ bar; // Error: ...
1
vote
1answer
39 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 ...
2
votes
1answer
191 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);
...
4
votes
2answers
106 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, ...
6
votes
4answers
202 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 ...
3
votes
1answer
89 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);
...
2
votes
1answer
112 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, ... );
...
5
votes
1answer
165 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( ...
2
votes
1answer
139 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( ...
4
votes
2answers
239 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 ...
5
votes
1answer
310 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 ...
0
votes
3answers
190 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 ...
12
votes
1answer
268 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 ...
3
votes
2answers
135 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 ...
5
votes
2answers
200 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, ...
6
votes
2answers
388 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 ...
5
votes
3answers
692 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 ...
2
votes
2answers
157 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 ...
5
votes
2answers
597 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 ...
10
votes
1answer
563 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
333 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 ...
3
votes
1answer
145 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 ...
14
votes
2answers
363 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 ...
6
votes
1answer
464 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 ...
42
votes
6answers
3k 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 ...
4
votes
2answers
222 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 ...
9
votes
4answers
732 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?
25
votes
8answers
2k 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?