@@ -953,18 +953,18 @@ $(GNAME IndexExpression):
953
953
954
954
$(P $(I PostfixExpression) is evaluated. If $(I PostfixExpression) is an
955
955
expression of type static array or dynamic array, the symbol $(DOLLAR) is set to
956
- be the the number of elements in the array. If $(I PostfixExpression) is an $(I
957
- ExpressionTuple ), the symbol $(DOLLAR) is set to be the the number of elements
958
- in the tuple . A new declaration scope is created for the evaluation of the
956
+ be the number of elements in the array. If $(I PostfixExpression) is a $(I
957
+ ValueSeq ), the symbol $(DOLLAR) is set to be the number of elements
958
+ in the sequence . A new declaration scope is created for the evaluation of the
959
959
$(GLINK ArgumentList) and $(DOLLAR) appears in that scope only.)
960
960
961
- $(P If $(I PostfixExpression) is an $(I ExpressionTuple ),
961
+ $(P If $(I PostfixExpression) is a $(I ValueSeq ),
962
962
then the $(GLINK ArgumentList) must consist of only one argument,
963
963
and that must be statically evaluatable to an integral constant.
964
964
That integral constant $(I n) then selects the $(I n)th
965
- expression in the $(I ExpressionTuple ), which is the result
965
+ expression in the $(I ValueSeq ), which is the result
966
966
of the $(I IndexExpression).
967
- It is an error if $(I n) is out of bounds of the $(I ExpressionTuple ).
967
+ It is an error if $(I n) is out of bounds of the $(I ValueSeq ).
968
968
)
969
969
970
970
$(H2 $(LNAME2 slice_expressions, Slice Expressions))
@@ -1065,8 +1065,8 @@ type:)
1065
1065
$(TROW $(D arr[e-a .. e-b]), $(D a - b) $(I if) $(D a >= b))
1066
1066
)
1067
1067
1068
- $(P If $(I PostfixExpression) is an $(I ExpressionTuple ), then
1069
- the result of the slice is a new $(I ExpressionTuple ) formed
1068
+ $(P If $(I PostfixExpression) is a $(I ValueSeq ), then
1069
+ the result of the slice is a new $(I ValueSeq ) formed
1070
1070
from the upper and lower bounds, which must statically evaluate
1071
1071
to integral constants.
1072
1072
It is an error if those
@@ -1299,8 +1299,8 @@ $(GNAME ArrayLiteral):
1299
1299
-------------
1300
1300
1301
1301
$(P If any of the arguments in the $(GLINK ArgumentList) are
1302
- an $(I ExpressionTuple ), then the elements of the $(I ExpressionTuple )
1303
- are inserted as arguments in place of the tuple .
1302
+ a $(I ValueSeq ), then the elements of the $(I ValueSeq )
1303
+ are inserted as arguments in place of the sequence .
1304
1304
)
1305
1305
1306
1306
$(P Array literals are allocated on the memory managed heap.
@@ -1379,8 +1379,8 @@ $(GNAME ValueExpression):
1379
1379
---
1380
1380
1381
1381
$(P If any of the keys or values in the $(I KeyValuePairs) are
1382
- an $(I ExpressionTuple ), then the elements of the $(I ExpressionTuple )
1383
- are inserted as arguments in place of the tuple .
1382
+ a $(I ValueSeq ), then the elements of the $(I ValueSeq )
1383
+ are inserted as arguments in place of the sequence .
1384
1384
)
1385
1385
1386
1386
$(H3 $(LNAME2 function_literals, Function Literals))
@@ -1999,15 +1999,15 @@ void foo()
1999
1999
$(TROW $(D union), $(I Type))
2000
2000
$(TROW $(D class), $(I Type))
2001
2001
$(TROW $(D interface), $(I Type))
2002
- $(TROW $(D super), $(I TypeTuple ) of base classes and interfaces)
2002
+ $(TROW $(D super), $(I TypeSeq ) of base classes and interfaces)
2003
2003
$(TROW $(D enum), the base type of the enum)
2004
- $(TROW $(D function), $(ARGS $(I TypeTuple ) of the function parameter types.
2004
+ $(TROW $(D function), $(ARGS $(I TypeSeq ) of the function parameter types.
2005
2005
For C- and D-style variadic functions,
2006
2006
only the non-variadic parameters are included.
2007
2007
For typesafe variadic functions, the $(D ...) is ignored.))
2008
2008
$(TROW $(CODE delegate), the function type of the delegate)
2009
2009
$(TROW $(CODE return), $(ARGS the return type of the function, delegate, or function pointer))
2010
- $(TROW $(CODE __parameters), $(ARGS the parameter tuple of a function, delegate, or function pointer.
2010
+ $(TROW $(CODE __parameters), $(ARGS the parameter sequence of a function, delegate, or function pointer.
2011
2011
This includes the parameter types, names, and default values.))
2012
2012
$(TROW $(D const), $(I Type))
2013
2013
$(TROW
0 commit comments