[Issue 5804] New: map! needs to fail on void functions + I'd like a mapCall function

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Mar 31 19:01:24 PDT 2011


http://d.puremagic.com/issues/show_bug.cgi?id=5804

           Summary: map! needs to fail on void functions + I'd like a
                    mapCall function
           Product: D
           Version: unspecified
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: Phobos
        AssignedTo: nobody at puremagic.com
        ReportedBy: andrej.mitrovich at gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at gmail.com> 2011-03-31 18:57:51 PDT ---
import std.stdio;
import std.algorithm;

void mapCall(alias func, T)(T t)
{
    foreach (value; t)
    {
        func(value);
    }
}

void main()
{
    // nothing happens
    map!(writeln)([4, 5, 6]);   

    // prints 4\n, 5\n, 6\n
    mapCall!(writeln)(4, 5, 6);
}

map doesn't work properly with void functions, it should at least check the
return type of a function and fail to instantiate if the return type is void.
Otherwise it seems like this is a no-op since nothing really happens.

The feature request is to either expand map! to work on void functions, or
introduce a new function which allows us to call a single function in sequence
with various arguments. The `mapCall` implementation here is just a
demonstration, as is its name.

I think this type of function could be a useful to have, unless something like
this already exists in Phobos (well, map was supposed to be it but it doesn't
work for void functions..).

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list