@@ -1858,22 +1858,22 @@ $(GNAME IndexOperation):
18581858 $(I ArgumentList) and `$` appears in that scope only.
18591859 )
18601860
1861- $(P If the $(I PostfixExpression) is an expression of static or
1861+ * If the $(I PostfixExpression) is an expression of static or
18621862 dynamic array type, the result of the indexing is an lvalue
18631863 of the *i*th element in the array, where `i` is an integer
18641864 evaluated from $(I ArgumentList).
1865- If $(I PostfixExpression) is a pointer `p`, the result is
1865+ See $(DDSUBLINK spec/arrays, indexing, array indexing).
1866+
1867+ * If $(I PostfixExpression) is a $(DDSUBLINK spec/type, pointers, pointer) `p`, the result is
18661868 `*(p + i)` (see $(RELATIVE_LINK2 pointer_arithmetic, Pointer Arithmetic)).
1867- )
18681869
1869- $(P If the base $(I PostfixExpression) is a $(DDSUBLINK spec/template, variadic-templates, $(I ValueSeq))
1870+ * If the base $(I PostfixExpression) is a $(DDSUBLINK spec/template, variadic-templates, $(I ValueSeq))
18701871 then the $(I ArgumentList) must consist of only one argument,
18711872 and that must be statically evaluatable to an integral constant.
18721873 That integral constant $(I n) then selects the $(I n)th
18731874 expression in the $(I ValueSeq), which is the result
18741875 of the $(I IndexOperation).
18751876 It is an error if $(I n) is out of bounds of the $(I ValueSeq).
1876- )
18771877
18781878 $(P The index operator can be $(DDSUBLINK spec/operatoroverloading, array, overloaded).
18791879 Using multiple indices in *ArgumentList* is only supported for operator
@@ -1907,6 +1907,7 @@ $(GNAME Slice):
19071907 referencing elements `a[i]` to `a[j-1]` inclusive, where `i`
19081908 and `j` are integers evaluated from the first and second $(I
19091909 AssignExpression) respectively.
1910+ See $(DDSUBLINK spec/arrays, slicing, array slicing).
19101911
19111912 * If the base $(I PostfixExpression) is a $(DDSUBLINK spec/type, pointers, pointer) `p`, the result
19121913 will be a dynamic array referencing elements from `p[i]` to `p[j-1]`
0 commit comments