るりまサーチ

最速Rubyリファレンスマニュアル検索!
627件ヒット [601-627件を表示] (0.012秒)

別のキーワード

  1. _builtin abs
  2. _builtin abs2
  3. bigdecimal abs
  4. float abs
  5. integer abs

検索結果

<< < ... 5 6 7 >>

NEWS for Ruby 3.0.0 (6.0)

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

...and their subclasses.
* Method inlining support for some C methods
* `Kernel`: `#class`, `#frozen?`
* `Integer`: `#-@`, `#~`, `#abs`, `#bit_length`, `#even?`, `#integer?`, `#magnitude`, `#odd?`, `#ord`, `#to_i`, `#to_int`, `#zero?`
* `Struct`: reader methods for 10th or...
...e/stdlib classes.
* `rbs` gem is bundled to load and process RBS files.

=== TypeProf

* TypeProf is a type analysis tool for Ruby code based on abstract interpretation.
* It reads non-annotated Ruby code, tries inferring its type signature, and prints the analysis result in RBS format....

Object#send(name, *args) -> object (6.0)

オブジェクトのメソッド name を args を引数に して呼び出し、メソッドの実行結果を返します。

...字列かSymbol で指定するメソッド名です。
@param args 呼び出すメソッドに渡す引数です。

//emlist[][ruby]{
p -365.send(:abs) #=> 365
p "ruby".send(:sub,/./,"R") #=> "Ruby"


class Foo
def foo() "foo" end
def bar() "bar" end
def baz() "baz" end
end

# 任意のキ...

Object#send(name, *args) { .... } -> object (6.0)

オブジェクトのメソッド name を args を引数に して呼び出し、メソッドの実行結果を返します。

...字列かSymbol で指定するメソッド名です。
@param args 呼び出すメソッドに渡す引数です。

//emlist[][ruby]{
p -365.send(:abs) #=> 365
p "ruby".send(:sub,/./,"R") #=> "Ruby"


class Foo
def foo() "foo" end
def bar() "bar" end
def baz() "baz" end
end

# 任意のキ...
<< < ... 5 6 7 >>