408件ヒット
[401-408件を表示]
(0.021秒)
別のキーワード
クラス
- Array (96)
-
Net
:: IMAP (12) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeMultipart (12) -
Net
:: IMAP :: BodyTypeText (12) - Object (60)
- String (12)
- Vector (36)
モジュール
- Enumerable (144)
キーワード
- collect (48)
- collect! (24)
- collect2 (24)
-
collect
_ concat (24) -
enum
_ for (24) - extension (48)
-
flat
_ map (24) - map! (24)
- map2 (12)
-
pathmap
_ explode (12) -
response
_ handlers (12) -
sort
_ by (24) - sum (24)
- tap (12)
-
to
_ enum (24)
検索結果
-
Object
# to _ enum(method = :each , *args) {|*args| . . . } -> Enumerator (19.0) -
Enumerator.new(self, method, *args) を返します。
...メソッドに渡される引数です。
//emlist[][ruby]{
str = "xyz"
enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]
# protects an array from being modified
a = [1, 2, 3]
p(a.to_enum) #=> #<Enumerator: [1, 2, 3]:each>
//}
//emlist[例(ブロックを...