最速Rubyリファレンスマニュアル検索!
すべて(110)
2.1.0(8)
2.2.0(8)
2.3.0(8)
2.4.0(8)
2.5.0(8)
2.6.0(10)
2.7.0(10)
3.0(10)
3.1(10)
3.2(10)
3.3(10)
3.4(10)
110件ヒット
[101-110件を表示]
(0.115秒)
トップページ
>
:
インスタンスメソッド
>
:
p
>
:
param
>
クラス:Proc
別のキーワード
openssl p
openssl p=
fileutils mkdir_p
dsa p
rsa p
ライブラリ
ビルトイン
(110)
キーワード
<<
(7)
===
(12)
>>
(7)
[]
(12)
binding
(12)
call
(12)
curry
(24)
parameters
(12)
yield
(12)
検索結果
先頭1件
Proc
#
binding -> Binding
<<
<
1
2
>>
Proc
#
binding -> Binding
(3014.0)
2.1.0
2.2.0
2.3.0
2.4.0
2.6.0
2.7.0
3.0
3.1
3.2
3.4
インスタンスメソッド
Proc オブジェクトが保持するコンテキストを Binding オブジェクトで返します。
...
Proc
オブジェクトが保持するコンテキストを
Binding オブジェクトで返します。
//emlist[例][ruby]{
def fred(
param
)
proc
{}
end
sam
p
le_
proc
= fred(99)
eval("
param
", sam
p
le_
proc
.binding) # => 99
//}
...
Binding
<<
<
1
2
>>