Method: Array#<<
- Defined in:
- array.c
#<<(obj) ⇒ Array
Append—Pushes the given object on to the end of this array. This expression returns the array itself, so several appends may be chained together.
[ 1, 2 ] << "c" << "d" << [ 3, 4 ]
#=> [ 1, 2, "c", "d", [ 3, 4 ] ]
904 905 906 907 908 909 910 911 912 913 914 |
# File 'array.c', line 904 VALUE rb_ary_push(VALUE ary, VALUE item) { long idx = RARRAY_LEN(ary); VALUE target_ary = ary_ensure_room_for_push(ary, 1); RARRAY_PTR_USE(ary, ptr, { RB_OBJ_WRITE(target_ary, &ptr[idx], item); }); ARY_SET_LEN(ary, idx + 1); return ary; } |