40
edits
No edit summary |
|||
Line 1: | Line 1: | ||
:''See also: the [[/Show of hands]].'' | :''See also: the [[/Show of hands/]] and [[/Essay/]] portion.'' | ||
This proposal was written by Daniel Friesen as an alternative to the [[ServerJS/Binary/B|Binary/B]] proposal. | This proposal was written by Daniel Friesen as an alternative to the [[ServerJS/Binary/B|Binary/B]] proposal. | ||
Line 47: | Line 47: | ||
: | : | ||
:There is another name which does fit this kind of operation, "Append" (Side note, Wrench.js does add .append to Array). Using [1,2,3].append([4,5,6]); DOES push 4, 5, and 6 onto the array creating the array [1,2,3,4,5,6]. | :There is another name which does fit this kind of operation, "Append" (Side note, Wrench.js does add .append to Array). Using [1,2,3].append([4,5,6]); DOES push 4, 5, and 6 onto the array creating the array [1,2,3,4,5,6]. | ||
== Prior art == | == Prior art == | ||
Line 225: | Line 215: | ||
;buf.lastIndexOf(sequence, offset=0); | ;buf.lastIndexOf(sequence, offset=0); | ||
:Returns the index within the calling buffer object of the first or last (depending on which method is used) occurrence of the specified value, or -1 if not found. | :Returns the index within the calling buffer object of the first or last (depending on which method is used) occurrence of the specified value, or -1 if not found. | ||
;buf.valueOf(); | ;buf.valueOf(); |
edits