578件ヒット
[1-100件を表示]
(0.139秒)
別のキーワード
ライブラリ
- ビルトイン (380)
-
cgi
/ core (24) - csv (12)
- forwardable (24)
-
net
/ ftp (36) -
net
/ imap (24) - rake (36)
-
rubygems
/ remote _ fetcher (24) - scanf (18)
クラス
- CSV (12)
-
Encoding
:: Converter (12) - Exception (8)
-
Gem
:: RemoteFetcher (24) -
Net
:: FTP (36) -
Net
:: IMAP (24) - Range (118)
- Regexp (12)
-
RubyVM
:: AbstractSyntaxTree :: Node (14) -
Scanf
:: FormatString (18) - String (216)
モジュール
-
CGI
:: QueryExtension :: Value (24) - Forwardable (24)
-
Rake
:: TaskManager (36)
キーワード
- =~ (12)
- [] (72)
- begin (12)
-
col
_ sep (12) - delegate (12)
- end (12)
- first (36)
-
instance
_ delegate (12) -
last
_ column (7) -
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) -
last
_ error (12) -
last
_ lineno (7) -
last
_ match _ tried (6) -
last
_ response (12) -
last
_ response _ code (12) -
last
_ spec (6) -
last
_ spec _ tried (6) - lastresp (12)
- max (46)
-
open
_ uri _ or _ path (12) - request (12)
- responses (12)
- select (12)
- slice (72)
- slice! (72)
検索結果
先頭5件
-
Range
# last -> object (18117.0) -
終端の要素を返します。範囲オブジェクトが終端を含むかどうかは関係ありま せん。
...終端の要素を返します。範囲オブジェクトが終端を含むかどうかは関係ありま
せん。
//emlist[例][ruby]{
(10..20).last # => 20
(10...20).last # => 20
//}
@see Range#begin... -
Range
# last(n) -> [object] (18117.0) -
最後の n 要素を返します。範囲内に要素が含まれない場合は空の配列を返します。
...ArgumentError n に負の数を指定した場合に発生します。
[注意] 引数を省略して実行した場合は、終端を含むかどうか
(Range#exclude_end? の戻り値)に関わらず終端の要素を返す事に注意し
てください。
//emlist[例][ruby]{
(10..20).last(3)......# => [18, 19, 20]
(10...20).last(3) # => [17, 18, 19]
//}
@see Range#first... -
CGI
:: QueryExtension :: Value # last -> self (18102.0) -
@todo
@todo -
Rake
:: TaskManager # last _ comment -> String (9209.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
...詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_app2 do |task|
end
//}... -
Rake
:: TaskManager # last _ description -> String (9209.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
...詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_app2 do |task|
end
//}... -
Rake
:: TaskManager # last _ description=(description) (9120.0) -
最新の詳細説明をセットします。
...の記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
task.application.last_description # => "test2"
task.application.last_description = "test3"
task.application.last_description # => "test3"
end
desc "test2"
task :test_rake_app2 do |task|
end
//}... -
Encoding
:: Converter # last _ error -> Exception | nil (9114.0) -
直前に変換器で発生した例外に相当する例外オブジェクトを返します。 直前の変換で例外が発生していない場合は nil を返します。
...いない場合は nil を返します。
//emlist[][ruby]{
ec = Encoding::Converter.new("utf-8", "iso-8859-1")
p ec.primitive_convert(src="\xf1abcd", dst="") #=> :invalid_byte_sequence
p ec.last_error #=> #<Encoding::InvalidByteSequenceError: "\xF1" followed by "a" on UTF-8>
p ec.primit......ive_convert(src, dst, nil, 1) #=> :destination_buffer_full
p ec.last_error #=> nil
//}... -
Scanf
:: FormatString # last _ match _ tried (9102.0) -
@todo
@todo -
Scanf
:: FormatString # last _ spec (9102.0) -
@todo
@todo -
Scanf
:: FormatString # last _ spec _ tried (9102.0) -
@todo
@todo