Skip to content

Commit b39a36a

Browse files
committed
Reword changelog
1 parent 43d52a1 commit b39a36a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

changelog/is_input_range_element.dd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
isInputRange now takes an optional element type.
22

3-
isInputRange now takes an optional 2nd template parameter that
4-
defaults to void. If not void, it only evaluates to true if the
5-
range's element type is convertible to passed-in parameter. For
6-
instance, `isInputRange!(int[], int)` is true, but
3+
isInputRange now has an optional 2nd template parameter that defaults
4+
to void. If not void, it only evaluates to true if the range's element
5+
type is the same type as this extra argument, modulo const. For
6+
instance, `isInputRange!(int[], const(int))` is true, but
77
`isInputRange!(int[], string)` is false.

0 commit comments

Comments
 (0)