ライブラリ
- ビルトイン (339)
- bigdecimal (12)
-
minitest
/ unit (1) - pathname (12)
-
rdoc
/ text (12) -
rdoc
/ top _ level (24) - resolv (24)
- set (18)
- uri (24)
-
webrick
/ httpserver (24) -
webrick
/ httpservlet / abstract (120)
クラス
- BigDecimal (12)
- Bignum (6)
- Complex (36)
- File (18)
- Fixnum (6)
- Float (24)
- Integer (24)
- Numeric (36)
- Object (36)
- Pathname (12)
-
RDoc
:: TopLevel (24) - Rational (18)
-
Resolv
:: DNS :: Name (24) -
RubyVM
:: AbstractSyntaxTree :: Node (49) -
RubyVM
:: InstructionSequence (12) - Set (24)
-
Thread
:: Backtrace :: Location (12) -
URI
:: Generic (24) -
WEBrick
:: HTTPServer :: MountTable (24) -
WEBrick
:: HTTPServlet :: AbstractServlet (108)
モジュール
-
MiniTest
:: Assertions (1) -
RDoc
:: Text (12) -
RubyVM
:: AbstractSyntaxTree (30)
キーワード
- AbstractServlet (12)
- AbstractSyntaxTree (7)
-
NEWS for Ruby 3
. 0 . 0 (5) - Node (7)
- Numeric (12)
- [] (12)
- abs2 (24)
- absolute (12)
- absolute? (36)
-
absolute
_ path (36) -
absolute
_ path? (6) -
assert
_ in _ epsilon (1) - children (7)
- delete (12)
- divide (24)
-
do
_ DELETE (12) -
do
_ GET (12) -
do
_ HEAD (12) -
do
_ OPTIONS (12) -
do
_ POST (12) -
do
_ PUT (12) -
file
_ absolute _ name (12) -
file
_ absolute _ name= (12) -
first
_ column (7) -
first
_ lineno (7) -
get
_ instance (12) - inspect (7)
-
last
_ column (7) -
last
_ lineno (7) - magnitude (63)
- method (12)
- new (24)
- of (10)
- parse (10)
-
parse
_ file (10) - send (24)
- service (12)
- type (7)
-
webrick
/ httpservlet / abstract (12)
検索結果
先頭3件
-
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
# 任意のキ...