るりまサーチ

最速Rubyリファレンスマニュアル検索!
10件ヒット [1-10件を表示] (0.153秒)
トップページ > クエリ:I[x] > クエリ:i[x] > クエリ:IBM720[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. _builtin i

種類

ライブラリ

クラス

キーワード

検索結果

Encoding::IBM720 -> Encoding (27301.0)

CP720 エンコーディング。

...CP720 エンコーディング。

アラビア語を取り扱う 8bit single-byteエンコーディングです。

@see https://en.wikipedia.org/wiki/Code_page_720...

Encoding::CP720 -> Encoding (6201.0)

CP720 エンコーディング。

...CP720 エンコーディング。

アラビア語を取り扱う 8bit single-byteエンコーディングです。

@see https://en.wikipedia.org/wiki/Code_page_720...

NEWS for Ruby 3.0.0 (18.0)

NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。

...positional arguments.
Code that resulted in deprecation warnings in Ruby 2.7 will now
result in ArgumentError or different behavior. 14183
* Procs accepting a single rest argument and keywords are no longer
subject to autosplatting. This now matches the behavior of Procs
accepting...
...single rest argument and no keywords.
16166

//emlist[][ruby]{
pr = proc{|*a, **kw| [a, kw]}

pr.call([1])
# 2.7 => [[1], {}]
# 3.0 => [[[1]], {}]

pr.call([1, {a: 1}])
# 2.7 => [[1], {:a=>1}] # and deprecation warning
# 3.0 => a=>1}, {}]
//}

* Arguments forwarding (`...`) now supports leadin...
...mlist{
def method_missing(meth, ...)
send(:"do_#{meth}", ...)
end
//}

* Pattern matching (`case/in`) is no longer experimental. 17260
* One-line pattern matching is redesigned. [EXPERIMENTAL]
* `=>` is added. It can be used like a rightward assignment.
17260
* `in...