aboutsummaryrefslogtreecommitdiff
path: root/libphobos/src/std/algorithm
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2025-03-12 12:04:59 +0100
committerIain Buclaw <ibuclaw@gdcproject.org>2025-03-12 15:38:28 +0100
commitd63b52e059a7d77b98a2ef005920a85feb1e2446 (patch)
treebc3f8f9879d5b32aadaa0835508741a1b07471f0 /libphobos/src/std/algorithm
parent6e4045513d789587b2c7750e9016c7035b461299 (diff)
downloadgcc-d63b52e059a7d77b98a2ef005920a85feb1e2446.zip
gcc-d63b52e059a7d77b98a2ef005920a85feb1e2446.tar.gz
gcc-d63b52e059a7d77b98a2ef005920a85feb1e2446.tar.bz2
libphobos: Merge upstream phobos 0faae92d6
Phobos changes: - Import phobos v2.111.0-beta.1. - Added `bitCast' function to `std.conv'. - Added `readfln' and `File.readfln' functions to `std.stdio'. - New procedural API for `std.sumtype'. libphobos/ChangeLog: * src/MERGE: Merge upstream phobos 0faae92d6. * testsuite/libphobos.phobos/std_array.d: Regenerate. * testsuite/libphobos.phobos/std_conv.d: Regenerate. * testsuite/libphobos.phobos/std_functional.d: Regenerate. * testsuite/libphobos.phobos/std_sumtype.d: Regenerate.
Diffstat (limited to 'libphobos/src/std/algorithm')
-rw-r--r--libphobos/src/std/algorithm/iteration.d34
1 files changed, 10 insertions, 24 deletions
diff --git a/libphobos/src/std/algorithm/iteration.d b/libphobos/src/std/algorithm/iteration.d
index 8a3add3..f8e1c05 100644
--- a/libphobos/src/std/algorithm/iteration.d
+++ b/libphobos/src/std/algorithm/iteration.d
@@ -446,35 +446,21 @@ if (fun.length >= 1)
auto map(Range)(Range r)
if (isInputRange!(Unqual!Range))
{
- import std.meta : AliasSeq, staticMap;
+ import std.meta : staticMap;
+ import std.functional : adjoin;
alias RE = ElementType!(Range);
- static if (fun.length > 1)
- {
- import std.functional : adjoin;
- import std.meta : staticIndexOf;
- alias _funs = staticMap!(unaryFun, fun);
- alias _fun = adjoin!_funs;
+ alias _funs = staticMap!(unaryFun, fun);
+ alias _fun = adjoin!_funs;
- // Once https://issues.dlang.org/show_bug.cgi?id=5710 is fixed
- // accross all compilers (as of 2020-04, it wasn't fixed in LDC and GDC),
- // this validation loop can be moved into a template.
- foreach (f; _funs)
- {
- static assert(!is(typeof(f(RE.init)) == void),
- "Mapping function(s) must not return void: " ~ _funs.stringof);
- }
- }
- else
+ // Once https://issues.dlang.org/show_bug.cgi?id=5710 is fixed
+ // accross all compilers (as of 2020-04, it wasn't fixed in LDC and GDC),
+ // this validation loop can be moved into a template.
+ foreach (f; _funs)
{
- alias _fun = unaryFun!fun;
- alias _funs = AliasSeq!(_fun);
-
- // Do the validation separately for single parameters due to
- // https://issues.dlang.org/show_bug.cgi?id=15777.
- static assert(!is(typeof(_fun(RE.init)) == void),
- "Mapping function(s) must not return void: " ~ _funs.stringof);
+ static assert(!is(typeof(f(RE.init)) == void),
+ "Mapping function(s) must not return void: " ~ _funs.stringof);
}
return MapResult!(_fun, Range)(r);