2116件ヒット
[201-300件を表示]
(0.031秒)
別のキーワード
種類
- インスタンスメソッド (1640)
- モジュール関数 (229)
- 特異メソッド (139)
- クラス (96)
- オブジェクト (12)
クラス
- Array (10)
- BasicObject (72)
- Enumerator (62)
-
Enumerator
:: Lazy (48) - Exception (12)
- Method (271)
- Module (480)
- NameError (24)
- NoMethodError (40)
- Object (216)
- Proc (56)
- Refinement (4)
- Regexp (48)
-
RubyVM
:: InstructionSequence (108) - String (60)
- Thread (12)
- TracePoint (43)
- UnboundMethod (179)
モジュール
- Kernel (205)
- Marshal (24)
-
RubyVM
:: AbstractSyntaxTree (10)
オブジェクト
- main (24)
キーワード
- << (14)
- == (24)
- === (8)
- >> (14)
- BasicObject (12)
- InstructionSequence (12)
- NameError (12)
- NoMethodError (12)
- Numeric (12)
- Proc (12)
- UnboundMethod (12)
- [] (24)
-
_ _ callee _ _ (12) -
_ _ method _ _ (12) -
absolute
_ path (12) -
alias
_ method (12) - args (12)
- arity (24)
- backtrace (12)
-
base
_ label (12) - bind (12)
-
bind
_ call (12) - call (24)
-
callee
_ id (12) - caller (36)
-
class
_ exec (12) - clone (24)
- curry (22)
-
define
_ method (48) -
define
_ singleton _ method (24) - dig (10)
- disasm (12)
- disassemble (12)
- dump (24)
- each (48)
- encode (36)
-
enum
_ for (48) - eql? (24)
- eval (24)
- fail (36)
-
first
_ lineno (12) - hash (24)
-
import
_ methods (4) - inspect (24)
-
instance
_ eval (24) -
instance
_ method (12) -
instance
_ methods (12) - label (12)
- lambda (18)
- lambda? (12)
-
last
_ match (24) - main (12)
- match (24)
- method (12)
-
method
_ added (12) -
method
_ defined? (12) -
method
_ id (12) -
method
_ missing (12) -
method
_ removed (12) -
method
_ undefined (12) - methods (12)
-
module
_ exec (12) -
module
_ function (36) - name (36)
- new (45)
- of (22)
-
original
_ name (24) - owner (24)
- parameters (43)
- path (12)
- private (48)
-
private
_ call? (9) -
private
_ class _ method (24) -
private
_ instance _ methods (12) -
private
_ method _ defined? (12) -
private
_ methods (12) - proc (19)
- protected (48)
-
protected
_ instance _ methods (12) -
protected
_ method _ defined? (12) -
protected
_ methods (12) - public (48)
-
public
_ class _ method (24) -
public
_ instance _ method (12) -
public
_ instance _ methods (12) -
public
_ method (12) -
public
_ method _ defined? (12) -
public
_ methods (12) - raise (36)
- receiver (12)
-
remove
_ method (12) -
require
_ relative (12) -
respond
_ to? (12) -
respond
_ to _ missing? (12) -
ruby2
_ keywords (18) - send (24)
-
singleton
_ method (12) -
singleton
_ method _ added (12) -
singleton
_ method _ removed (12) -
singleton
_ method _ undefined (12) -
singleton
_ methods (12) -
source
_ location (36) -
super
_ method (22) -
to
_ a (12) -
to
_ enum (48) -
to
_ proc (12) -
to
_ s (48) -
to
_ str (12) - unbind (12)
-
undef
_ method (12)
検索結果
先頭5件
-
Method
# curry(arity) -> Proc (21014.0) -
self を元にカリー化した Proc を返します。
...。
//emlist[例][ruby]{
def foo(a,b,c)
[a, b, c]
end
proc = self.method(:foo).curry
proc2 = proc.call(1, 2) #=> #<Proc>
proc2.call(3) #=> [1,2,3]
def vararg(*args)
args
end
proc = self.method(:vararg).curry(4)
proc2 = proc.call(:x) #=> #<Proc>
proc3 = proc2... -
Method
# eql?(other) -> bool (21014.0) -
自身と other が同じインスタンスの同じメソッドを表す場合に true を返します。そうでない場合に false を返します。
...ッドを表す場合に
true を返します。そうでない場合に false を返します。
@param other 自身と比較したいオブジェクトを指定します。
//emlist[例][ruby]{
s = "bar"
a = s.method(:size)
b = s.method(:size)
p a == b #=> true
//}... -
Method
# hash -> Integer (21014.0) -
自身のハッシュ値を返します。
...自身のハッシュ値を返します。
//emlist[例][ruby]{
a = method(:==)
b = method(:eql?)
p a.eql? b # => true
p a.hash == b.hash # => true
p [a, b].uniq.size # => 1
//}... -
Method
# name -> Symbol (21014.0) -
このメソッドの名前を返します。
...このメソッドの名前を返します。
//emlist[例][ruby]{
class Foo
def foo(arg)
"foo called with arg #{arg}"
end
end
m = Foo.new.method(:foo) # => #<Method: Foo#foo>
m.name # => :foo
//}... -
Method
# receiver -> object (21014.0) -
このメソッドオブジェクトのレシーバを返します。
...のメソッドオブジェクトのレシーバを返します。
//emlist[例][ruby]{
class Foo
def foo(arg)
"foo called with arg #{arg}"
end
end
m = Foo.new.method(:foo) # => #<Method: Foo#foo>
m.receiver # => #<Foo:0x007fb39203eb78>
m.receiver.foo(1) # => "foo called with arg 1"
//}... -
Method
# to _ proc -> Proc (21014.0) -
self を call する Proc オブジェクトを生成して返します。
...self を call する Proc オブジェクトを生成して返します。
//emlist[例][ruby]{
class Foo
def foo
"foo"
end
end
m = Foo.new.method(:foo) # => #<Method: Foo#foo>
pr = m.to_proc # => #<Proc:0x007f874d026008 (lambda)>
pr.call # => "foo"
//}... -
Method
# original _ name -> Symbol (21008.0) -
オリジナルのメソッド名を返します。
...オリジナルのメソッド名を返します。
//emlist[例][ruby]{
class C
def foo; end
alias bar foo
end
C.new.method(:bar).original_name # => :foo
//}
@see UnboundMethod#original_name... -
UnboundMethod
# super _ method -> UnboundMethod | nil (9215.0) -
self 内で super を実行した際に実行されるメソッドを UnboundMethod オブジェ クトにして返します。
...self 内で super を実行した際に実行されるメソッドを UnboundMethod オブジェ
クトにして返します。
@see Method#super_method... -
Module
# method _ defined?(name , inherit=true) -> bool (6271.0) -
モジュールにインスタンスメソッド name が定義されており、 かつその可視性が public または protected であるときに true を返します。
...e#public_method_defined?, Module#private_method_defined?, Module#protected_method_defined?
//emlist[例][ruby]{
module A
def method1() end
def protected_method1() end
protected :protected_method1
end
class B
def method2() end
def private_method2() end
private :private_method2
end
cl......def method3() end
end
A.method_defined? :method1 #=> true
C.method_defined? "method1" #=> true
C.method_defined? "method2" #=> true
C.method_defined? "method2", true #=> true
C.method_defined? "method2", false #=> false
C.method_defined? "method3"......#=> true
C.method_defined? "protected_method1" #=> true
C.method_defined? "method4" #=> false
C.method_defined? "private_method2" #=> false
//}...