604件ヒット
[601-604件を表示]
(0.062秒)
ライブラリ
- ビルトイン (248)
-
irb
/ inspector (24) -
minitest
/ spec (2) - open-uri (24)
- prettyprint (12)
- pty (12)
- readline (24)
- shell (6)
-
shell
/ command-processor (84) -
shell
/ process-controller (48) - tracer (84)
-
webrick
/ httpproxy (12) -
webrick
/ httpserver (12) -
webrick
/ httpservlet / prochandler (12)
クラス
- Enumerator (19)
- Hash (30)
-
IRB
:: Inspector (12) -
MiniTest
:: Spec (2) - PrettyPrint (12)
- Proc (19)
-
RubyVM
:: InstructionSequence (36) - Shell (6)
-
Shell
:: CommandProcessor (84) -
Shell
:: ProcessController (48) - Tracer (84)
-
WEBrick
:: HTTPProxyServer (12) -
WEBrick
:: HTTPServer (12) -
WEBrick
:: HTTPServlet :: ProcHandler (12)
モジュール
オブジェクト
- main (24)
キーワード
- Inspector (12)
- [] (6)
- abort (24)
- activate (6)
-
active
_ process _ controllers (6) -
add
_ delegate _ command _ to _ shell (6) -
add
_ filter (24) - after (1)
-
alias
_ command (12) -
alias
_ map (6) - before (1)
-
block
_ output _ synchronize (6) - check (12)
-
completion
_ proc (12) -
completion
_ proc= (12) -
def
_ builtin _ commands (6) -
def
_ inspector (12) -
def
_ system _ command (6) -
define
_ method (24) - disasm (12)
- disassemble (12)
-
display
_ process _ id (12) -
display
_ process _ id= (12) -
display
_ process _ id? (12) -
each
_ active _ object (6) - exec (12)
- exit (12)
- exit! (12)
- fork (24)
- format (12)
- inactivate (6)
- initialize (6)
-
install
_ builtin _ commands (6) -
install
_ system _ commands (6) -
last
_ status (8) -
method
_ added (6) - new (110)
- of (22)
-
open
_ uri (24) -
process
_ controllers _ exclusive (6) -
ruby2
_ keywords _ hash? (6) -
run
_ config (6) -
set
_ get _ line _ procs (24) - spawn (12)
-
unalias
_ command (6) -
undef
_ system _ command (12) -
wait
_ to _ finish _ all _ process _ controllers (6)
検索結果
-
Enumerator
. new(obj , method = :each , *args) -> Enumerator (2.0) -
オブジェクト obj について、 each の代わりに method という 名前のメソッドを使って繰り返すオブジェクトを生成して返します。 args を指定すると、 method の呼び出し時に渡されます。
オブジェクト obj について、 each の代わりに method という
名前のメソッドを使って繰り返すオブジェクトを生成して返します。
args を指定すると、 method の呼び出し時に渡されます。
@param obj イテレータメソッドのレシーバとなるオブジェクト
@param method イテレータメソッドの名前を表すシンボルまたは文字列
@param args イテレータメソッドの呼び出しに渡す任意個の引数
//emlist[例][ruby]{
str = "xyz"
enum = Enumerator.new(str, :each_byte)
p enum.map...