diff --git a/changelog/std_functional_bind.dd b/changelog/std_functional_bind.dd deleted file mode 100644 index b7031fada..000000000 --- a/changelog/std_functional_bind.dd +++ /dev/null @@ -1,24 +0,0 @@ -New function `bind` in `std.functional` - -It is used to pass the fields of a struct as arguments to a function. For -example, it can be used in a range pipeline to give names to the elements of a -$(REF Tuple, std, typecons): - ---- -import std.stdio; -import std.range; -import std.algorithm; -import std.functional; - -void printWithLineNumbers(File f) -{ - f.byLine - .enumerate - .each!(bind!((num, line) { - writefln("%8d %s", num, line); - })); -} ---- - -See $(REF_ALTTEXT the standard library documentation, bind, std, functional) -for more information. diff --git a/changelog/std_typecons_nullable_range.dd b/changelog/std_typecons_nullable_range.dd deleted file mode 100644 index ee0dc4dc3..000000000 --- a/changelog/std_typecons_nullable_range.dd +++ /dev/null @@ -1,14 +0,0 @@ -`Nullable` in `std.typecons` can now act as a range - -`Nullable` now offers an alternative 0 or 1 element range interface. - ---- -import std.stdio; -import std.algorithm; -import std.typecons; - -void printValues(Nullable!int[] values) -{ - values.joiner.each!writeln(); -} ---- diff --git a/changelog/zlib.dd b/changelog/zlib.dd deleted file mode 100644 index 99dd41bbc..000000000 --- a/changelog/zlib.dd +++ /dev/null @@ -1,3 +0,0 @@ -Zlib updated to 1.2.12 - -The bundled zlib has been updated to version 1.2.12.