940件ヒット
[901-940件を表示]
(0.028秒)
別のキーワード
ライブラリ
- ビルトイン (84)
- e2mmap (36)
- forwardable (48)
- matrix (116)
-
minitest
/ spec (1) - mkmf (12)
-
net
/ imap (524) - psych (60)
- rake (12)
-
rexml
/ sax2listener (24) - tsort (23)
クラス
- Exception (12)
- Matrix (80)
- Module (1)
-
Net
:: IMAP (452) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeMultipart (12) -
Net
:: IMAP :: BodyTypeText (12) -
Net
:: IMAP :: ContentDisposition (12) -
Net
:: IMAP :: ResponseError (12) - Object (48)
-
ObjectSpace
:: WeakMap (24) -
Psych
:: Handler (12) -
Psych
:: Nodes :: Mapping (48) - String (12)
- Vector (36)
モジュール
- Exception2MessageMapper (36)
- Forwardable (24)
- Kernel (12)
-
REXML
:: SAX2Listener (24) - SingleForwardable (24)
- TSort (23)
キーワード
- == (12)
- Fail (6)
- Raise (6)
- [] (12)
- []= (12)
-
add
_ response _ handler (24) - anchor= (12)
- 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)
- implicit= (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)
- response= (12)
- search (12)
- select (12)
- setacl (12)
- setquota (12)
- sort (12)
-
start
_ mapping (12) -
start
_ prefix _ mapping (12) - starttls (24)
- status (12)
- store (12)
- style= (12)
- subscribe (12)
- tag= (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)
検索結果
先頭4件
-
Matrix
# each(which = :all) -> Enumerator (13.0) -
行列の各要素を引数としてブロックを呼び出します。
...uby]{
require 'matrix'
Matrix[ [1,2], [3,4] ].each { |e| puts e }
# => prints the numbers 1 to 4
Matrix[ [1,2], [3,4] ].each(:strict_lower).to_a # => [3]
//}
@param which どの要素に対してブロックを呼び出すのかを Symbol で指定します
@see Matrix#each_with_index, Matrix#map... -
Matrix
# each(which = :all) {|e| . . . } -> self (13.0) -
行列の各要素を引数としてブロックを呼び出します。
...uby]{
require 'matrix'
Matrix[ [1,2], [3,4] ].each { |e| puts e }
# => prints the numbers 1 to 4
Matrix[ [1,2], [3,4] ].each(:strict_lower).to_a # => [3]
//}
@param which どの要素に対してブロックを呼び出すのかを Symbol で指定します
@see Matrix#each_with_index, Matrix#map... -
Vector
# collect2(v) -> Enumerator (13.0) -
ベクトルの各要素と引数 v の要素との組に対してブロックを評価し、その結果を要素として持つ配列を返します。
...rator を返します。
@param v ブロック内で評価される(ベクトル or 配列)
@raise ExceptionForMatrix::ErrDimensionMismatch 自分自身と引数のベクト
ルの要素の数(次元)が異なっていたときに発生します。
@see Vector#map2
次の例は、2つ... -
Vector
# collect2(v) {|x , y| . . . } -> Array (13.0) -
ベクトルの各要素と引数 v の要素との組に対してブロックを評価し、その結果を要素として持つ配列を返します。
...rator を返します。
@param v ブロック内で評価される(ベクトル or 配列)
@raise ExceptionForMatrix::ErrDimensionMismatch 自分自身と引数のベクト
ルの要素の数(次元)が異なっていたときに発生します。
@see Vector#map2
次の例は、2つ...