856件ヒット
[801-856件を表示]
(0.050秒)
別のキーワード
ライブラリ
- ビルトイン (72)
- e2mmap (36)
- forwardable (48)
- matrix (116)
-
minitest
/ spec (1) - mkmf (12)
-
net
/ imap (500) - psych (12)
- rake (12)
-
rexml
/ sax2listener (24) - tsort (23)
クラス
- Exception (12)
- Matrix (80)
- Module (1)
-
Net
:: IMAP (440) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeMultipart (12) -
Net
:: IMAP :: BodyTypeText (12) -
Net
:: IMAP :: ContentDisposition (12) - Object (48)
-
ObjectSpace
:: WeakMap (12) -
Psych
:: Handler (12) - String (12)
- Vector (36)
モジュール
- Exception2MessageMapper (36)
- Forwardable (24)
- Kernel (12)
-
REXML
:: SAX2Listener (24) - SingleForwardable (24)
- TSort (23)
キーワード
- == (12)
- Fail (6)
- Raise (6)
- [] (12)
-
add
_ response _ handler (24) - append (12)
- authenticate (12)
- bind (6)
- collect (14)
- collect! (14)
- collect2 (24)
- copy (12)
- create (12)
-
def
_ delegators (24) -
def
_ exception (6) -
def
_ instance _ delegators (12) -
def
_ single _ delegators (12) - delete (12)
- each (24)
-
each
_ strongly _ connected _ component _ from (23) -
end
_ prefix _ mapping (12) -
enum
_ for (24) - examine (12)
- fail (6)
- fetch (12)
- getacl (12)
- getquota (12)
- getquotaroot (12)
-
infect
_ with _ assertions (1) -
install
_ files (12) - list (12)
- login (12)
- lsub (12)
- map! (14)
- map2 (12)
- move (10)
-
pathmap
_ replace (12) -
remove
_ response _ handler (12) - rename (12)
- search (12)
- select (12)
- setquota (12)
- sort (12)
-
start
_ mapping (12) -
start
_ prefix _ mapping (12) - starttls (24)
- status (12)
- store (12)
- subscribe (12)
- thread (12)
-
to
_ enum (24) -
uid
_ copy (12) -
uid
_ fetch (12) -
uid
_ move (10) -
uid
_ search (12) -
uid
_ sort (12) -
uid
_ store (12) -
uid
_ thread (12) - unsubscribe (12)
- xlist (12)
検索結果
先頭5件
-
Object
# enum _ for(method = :each , *args) {|*args| . . . } -> Enumerator (119.0) -
Enumerator.new(self, method, *args) を返します。
...パラメータは引数 args です。
@param method メソッド名の文字列かシンボルです。
@param args 呼び出すメソッドに渡される引数です。
//emlist[][ruby]{
str = "xyz"
enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]
# pr... -
Object
# to _ enum(method = :each , *args) -> Enumerator (119.0) -
Enumerator.new(self, method, *args) を返します。
...パラメータは引数 args です。
@param method メソッド名の文字列かシンボルです。
@param args 呼び出すメソッドに渡される引数です。
//emlist[][ruby]{
str = "xyz"
enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]
# pr... -
Object
# to _ enum(method = :each , *args) {|*args| . . . } -> Enumerator (119.0) -
Enumerator.new(self, method, *args) を返します。
...パラメータは引数 args です。
@param method メソッド名の文字列かシンボルです。
@param args 呼び出すメソッドに渡される引数です。
//emlist[][ruby]{
str = "xyz"
enum = str.enum_for(:each_byte)
p(a = enum.map{|b| '%02x' % b }) #=> ["78", "79", "7a"]
# pr... -
Vector
# collect2(v) -> Enumerator (113.0) -
ベクトルの各要素と引数 v の要素との組に対してブロックを評価し、その結果を要素として持つ配列を返します。
...rator を返します。
@param v ブロック内で評価される(ベクトル or 配列)
@raise ExceptionForMatrix::ErrDimensionMismatch 自分自身と引数のベクト
ルの要素の数(次元)が異なっていたときに発生します。
@see Vector#map2
次の例は、2つ... -
Vector
# collect2(v) {|x , y| . . . } -> Array (113.0) -
ベクトルの各要素と引数 v の要素との組に対してブロックを評価し、その結果を要素として持つ配列を返します。
...rator を返します。
@param v ブロック内で評価される(ベクトル or 配列)
@raise ExceptionForMatrix::ErrDimensionMismatch 自分自身と引数のベクト
ルの要素の数(次元)が異なっていたときに発生します。
@see Vector#map2
次の例は、2つ...