From 2e5cf6b9ca6fef7e7b6945c8fa23302d6bbee4e0 Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Tue, 26 May 2015 00:32:35 +0200 Subject: [PATCH] remove groupBy - accidentally added in 2.067.0 - replaced by compat alias to chunkBy in 2.067.1 --- std/algorithm/iteration.d | 4 ---- 1 file changed, 4 deletions(-) diff --git a/std/algorithm/iteration.d b/std/algorithm/iteration.d index 83e206148..6cd044257 100644 --- a/std/algorithm/iteration.d +++ b/std/algorithm/iteration.d @@ -1884,10 +1884,6 @@ unittest [""].map!((s) => s).chunkBy!((x, y) => true); } -// to be removed in 2.068.0 -deprecated("use chunkBy instead") -alias groupBy = chunkBy; - // joiner /** Lazily joins a range of ranges with a separator. The separator itself