Split iteration functions into own submodule.

This commit is contained in:
H. S. Teoh 2015-01-17 16:47:27 -08:00
parent 28feb36b6e
commit 9dc4c34379
5 changed files with 3774 additions and 3737 deletions

View file

@ -1,7 +1,8 @@
// Written in the D programming language.
module std.algorithm.comparison;
import std.algorithm : filter, map, reverse; // FIXME: ugly hack
import std.algorithm : reverse; // FIXME: ugly hack
import std.algorithm.iteration : filter, map;
// FIXME
import std.functional; // : unaryFun, binaryFun;