summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-01 13:08:20 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-01 13:08:20 +0000
commit0dd9c302d9374f52abb09662b554e4ee95011444 (patch)
tree58a26d5d86ba98caa360b4d319e5092f6a5ba2b1 /NEWS
parent74495cfa11743a9cd1b27da81968cfbc00538bc4 (diff)
Supports `buffer` and `offset` in `Array#pack`
* pack.c (pack_pack): Supports `buffer` and `offset` in `Array#pack`. [Feature #12754] [ruby-dev:49798] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index e4ed0f2328..2eb751cbab 100644
--- a/NEWS
+++ b/NEWS
@@ -41,6 +41,10 @@ with all sufficient information, see the ChangeLog file or Redmine
* Array#concat [Feature #12333]
Now takes multiple arguments.
+ * Array#pack [Feature #12754]
+ Now takes optional arguments `buffer' and `offset' to reuse already
+ allocated buffer.
+
* Comparable
* Comparable#clamp. [Feature #10594]