Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In D how do i apply a function to all elements in an array?

For example i want to apply the std.string.leftJustify() function to all elements in a string array.

I know i could use a loop but is there a nice map function? I see there is one in the std.algorithm library but i've no idea how to use templates in D yet.

Any examples?

share|improve this question

2 Answers

up vote 11 down vote accepted

There are a lot of options to specify the lambda. map returns a range that lazily evaluates as it is consumed. You can force immediate evaluation using the function array from std.array.

import std.algorithm;
import std.stdio;
import std.string;

void main()
{
    auto x = ["test", "foo", "bar"];
    writeln(x);

    auto lj = map!"a.leftJustify(10)"(x); // using string mixins
    // alternative syntaxes:
    //   auto lj = map!q{a.leftJustify(10)}(x);
    //   auto lj = map!(delegate(a) { return a.leftJustify(10) })(x);
    //   auto lj = map!(a => a.leftJustify(10))(x); available in dmd 2.058
    writeln(lj);
}
share|improve this answer
keyword "delegate" is optional, so you can write just auto lj = map!((a){ return a.leftJustify(10); })(x); – Nekuromento Jan 5 '12 at 1:45
I don't believe this does what the OP wants. Here, x will remain unchanged. I believe he wants to modify the elements in place. – Peter Alexander Jan 5 '12 at 13:11
Shouldn't it be possible to just pass a delegate with ref parameter that changes the element? – Trass3r Jan 5 '12 at 16:23
Strings are immutable so unless he chooses to store them in a char[] instead they can't be modified in place. – eco Jan 5 '12 at 18:24
import std.algorithm;
import std.stdio;

void main()
{
    writeln(map!(a => a * 2)([1, 2, 3]));
    writeln(map!(delegate(a) { return a * 2; })([1, 2, 3]));
}
share|improve this answer
3  
The top one uses the new lambda syntax which won't work until DMD 2.058 comes out. – eco Jan 4 '12 at 23:21
I would i use this notation to apply the above string function to all the elements? – Gary Willoughby Jan 4 '12 at 23:37
@GaryWilloughby: Yes. – DejanLekic Jan 5 '12 at 1:44
1  
@eco: Where would one find this information? – FredOverflow Jan 6 '12 at 20:34
@FredOverflow: It was on the newsgroup. – Mehrdad Jan 6 '12 at 20:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.