I want to implement a generic hierarchy for tree structures, which can later be used in an implementation-independent way to describe generic algorithms over trees.
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 et
I am looking for something like CTAN, CPAN, PyPI. A standard place for solid 3rd party libraries. There is 开发者_StackOverflow社区Dsource but majority of the libraries seem to be defunct abandonware
How do I download a file in D? I have checked out the standard library, and the sample. I would rather use开发者_如何学Go phobos with the newest dmd2 than tango. All I need to do is download a file (h
Is there a general rule as to开发者_StackOverflow when I should use void[] instead of ubyte[]? Is either preferred?void[] for data that may contain pointers, byte[] for data that\'s actually just data
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?
I\'m trying to iterate over a tuple of arrays of different types, calling a function with each element. My current implementation is like this:
I\'m 开发者_StackOverflowtrying to translate the important parts of OpenMPI\'s mpi.h to the D programming language so I can call it from D.(HTOD didn\'t work at all.)I can\'t wrap my head around the f
I\'m trying to use MPI with the D programming language.D fully supports the C ABI and can link with and call any C code.I\'ve done the obvious stuff and translated the MPI header to D.I then translate
I\'m trying to learn the Y-combinator better (I sort of understand it in Scheme) and implement it in D 2.0, and I\'m failing pretty miserably: