[Issue 7138] New: Can't call array() on dirEntries

d-bugmail at puremagic.com d-bugmail at puremagic.com
Mon Dec 19 12:38:06 PST 2011


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

           Summary: Can't call array() on dirEntries
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: major
          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-12-19 12:38:05 PST ---
module test;

import std.algorithm;
import std.array;
import std.file;

void main()
{
    auto dFiles =
filter!`endsWith(a.name,".d")`(dirEntries(".",SpanMode.depth));
    auto arr1 = array(dFiles);  // OK

    auto arr2 = array(dirEntries(".",SpanMode.depth));  // NG??
}

test.d(11): Error: template std.array.array(Range) if (isIterable!(Range) &&
!isNarrowString!(Range)) does not match any function template declaration
test.d(11): Error: template std.array.array(Range) if (isIterable!(Range) &&
!isNarrowString!(Range)) cannot deduce template function from argument types
!()(DirIterator)

-- 
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