482件ヒット
[1-100件を表示]
(0.096秒)
別のキーワード
ライブラリ
- ビルトイン (192)
-
cgi
/ core (36) -
cgi
/ html (96) -
irb
/ context (12) -
irb
/ input-method (60) -
irb
/ output-method (12) -
minitest
/ unit (2) - openssl (48)
- rake (12)
- win32ole (12)
クラス
- CGI (24)
- Exception (12)
-
IRB
:: Context (12) -
IRB
:: StdioInputMethod (60) -
IRB
:: StdioOutputMethod (12) - Method (12)
-
MiniTest
:: Unit (1) - Module (48)
-
OpenSSL
:: SSL :: SSLContext (48) - Proc (12)
-
RubyVM
:: InstructionSequence (72) - String (36)
- UnboundMethod (12)
-
WIN32OLE
_ PARAM (12)
モジュール
-
CGI
:: HtmlExtension (96) -
CGI
:: QueryExtension (12) -
MiniTest
:: Assertions (1)
キーワード
-
absolute
_ path (12) -
assert
_ respond _ to (1) - backtrace (12)
-
base
_ label (12) - encode (36)
- encoding (12)
- eof? (12)
-
first
_ lineno (12) - form (48)
- gets (12)
- header (12)
- label (12)
- line (12)
-
module
_ function (36) -
multipart
_ form (48) - optional? (12)
- out (12)
- path (12)
- print (12)
- puke (1)
-
rake
_ extension (12) -
readable
_ atfer _ eof? (12) -
renegotiation
_ cb= (12) -
request
_ method (12) -
session
_ get _ cb= (12) -
session
_ new _ cb= (12) -
session
_ remove _ cb= (12) -
source
_ location (36) -
to
_ a (12)
検索結果
先頭5件
-
Method
# source _ location -> [String , Integer] | nil (36137.0) -
ソースコードのファイル名と行番号を配列で返します。
...@see Proc#source_location
//emlist[例][ruby]{
# ------- /tmp/foo.rb ---------
class Foo
def foo; end
end
# ----- end of /tmp/foo.rb ----
require '/tmp/foo'
m = Foo.new.method(:foo) # => #<Method: Foo#foo>
m.source_location # => ["/tmp/foo.rb", 2]
method(:puts).source_location # => nil
//}... -
IRB
:: Context # io -> IRB :: InputMethod (18302.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
CGI
:: QueryExtension # request _ method -> String (15235.0) -
ENV['REQUEST_METHOD'] を返します。
...ENV['REQUEST_METHOD'] を返します。... -
UnboundMethod
# source _ location -> [String , Integer] | nil (12137.0) -
ソースコードのファイル名と行番号を配列で返します。
...nil を返します。
//emlist[例][ruby]{
require 'time'
Time.instance_method(:zone).source_location # => nil
Time.instance_method(:httpdate).source_location # => ["/Users/user/.rbenv/versions/2.4.3/lib/ruby/2.4.0/time.rb", 654]
//}
@see Proc#source_location, Method#source_location... -
IRB
:: StdioInputMethod # encoding -> Encoding (9001.0) -
自身の文字エンコーディングを返します。
自身の文字エンコーディングを返します。 -
IRB
:: StdioInputMethod # eof? -> bool (9001.0) -
入力が EOF(End Of File)に達したかどうかを返します。
入力が EOF(End Of File)に達したかどうかを返します。 -
IRB
:: StdioInputMethod # gets -> String (9001.0) -
標準入力から文字列を 1 行読み込みます。
標準入力から文字列を 1 行読み込みます。 -
IRB
:: StdioInputMethod # line(line _ no) -> String (9001.0) -
引数 line_no で指定した過去の入力を行単位で返します。
引数 line_no で指定した過去の入力を行単位で返します。
@param line_no 取得する行番号を整数で指定します。 -
IRB
:: StdioInputMethod # readable _ atfer _ eof? -> true (9001.0) -
入力が EOF(End Of File)に達した後も読み込みが行えるかどうかを返します。
入力が EOF(End Of File)に達した後も読み込みが行えるかどうかを返します。