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