Project

General

Profile

Bug #6680 » rdoc_for_array_and_string_slice_2_v1.patch

stomar (Marcus Stollsteimer), 07/04/2012 09:38 PM

View differences:

string.c (Arbeitskopie)
* Element Reference --- If passed a single +index+, returns a substring of
* one character at that index. If passed a +start+ index and a +length+,
* returns a substring containing +length+ characters starting at the
* +index+. If passed a range, its beginning and end are interpreted as
* offsets delimiting the substring to be returned. In these three cases, if
* an index is negative, it is counted from the end of the string.
* index. If passed a range, its beginning and end are interpreted as
* offsets delimiting the substring to be returned.
* In the latter two cases, the index identifies the place just before a character.
* In all three cases, if an index is negative, it is counted from the end
* of the string.
*
* Returns +nil+ if the initial index falls outside the string or the length
* is negative.
array.c (Arbeitskopie)
* Element Reference --- Returns the element at +index+, or returns a
* subarray starting at the +start+ index and continuing for +length+
* elements, or returns a subarray specified by +range+ of indices.
* In the latter two cases, the start index identifies the place
* just before an element.
*
* Negative indices count backward from the end of the array (-1 is the last
* element).
......
* Element Assignment --- Sets the element at +index+, or replaces a subarray
* from the +start+ index for +length+ elements, or replaces a subarray
* specified by the +range+ of indices.
* In the latter two cases, the start index identifies the place
* just before an element.
*
* If indices are greater than the current capacity of the array, the array
* grows automatically. Negative indices will count backward from the end of
(2-2/4)