1220件ヒット
[1-100件を表示]
(0.134秒)
ライブラリ
- ビルトイン (734)
-
cgi
/ core (24) - csv (60)
- gdbm (12)
- matrix (84)
-
net
/ smtp (48) - openssl (24)
- optparse (12)
- ostruct (24)
- rake (36)
-
rexml
/ document (48) - sdbm (12)
- shell (24)
-
shell
/ command-processor (24) -
shell
/ filter (30) -
webrick
/ httputils (12) -
yaml
/ dbm (12)
クラス
-
ARGF
. class (72) - Array (120)
- CSV (12)
-
CSV
:: FieldInfo (12) -
CSV
:: Table (36) - Enumerator (19)
-
File
:: Stat (12) - GDBM (12)
- MatchData (110)
- Matrix (36)
-
Matrix
:: EigenvalueDecomposition (24) -
Matrix
:: LUPDecomposition (24) -
Net
:: SMTP (48) - NilClass (12)
-
OpenSSL
:: X509 :: Extension (12) -
OpenSSL
:: X509 :: Name (12) - OpenStruct (24)
- OptionParser (12)
-
REXML
:: Attributes (12) -
REXML
:: Elements (12) -
REXML
:: Parent (24) -
Rake
:: FileList (36) - Range (14)
- Regexp (24)
-
RubyVM
:: InstructionSequence (12) - SDBM (12)
- Shell (24)
-
Shell
:: CommandProcessor (24) -
Shell
:: Filter (30) - String (176)
- Time (12)
-
WEBrick
:: HTTPUtils :: FormData (12) -
YAML
:: DBM (12)
モジュール
-
CGI
:: QueryExtension :: Value (24) - Enumerable (151)
キーワード
- + (7)
- == (12)
- [] (48)
- atime (12)
- bytes (24)
- captures (12)
- cat (18)
- chain (7)
- chars (24)
- children (12)
-
chunk
_ while (12) - codepoints (24)
-
col
_ sep (12) - combination (24)
- deconstruct (2)
- delete (12)
-
delete
_ if (24) - each (24)
-
each
_ codepoint (24) -
each
_ grapheme _ cluster (16) -
each
_ line (24) -
each
_ pair (24) - echo (18)
- entries (19)
- glob (18)
-
grapheme
_ clusters (16) - length (12)
- line (12)
- lines (24)
- match (24)
-
max
_ by (48) - permutation (24)
-
rcptto
_ list (12) - readlines (36)
-
repeated
_ combination (24) -
repeated
_ permutation (24) - sample (24)
-
send
_ mail (12) - sendmail (12)
- size (24)
-
slice
_ after (24) -
slice
_ before (24) -
slice
_ when (12) - tee (18)
-
to
_ ary (60) -
values
_ at (12)
検索結果
先頭5件
-
Matrix
:: EigenvalueDecomposition # to _ a -> [Matrix , Matrix , Matrix] (21402.0) -
Matrix::EigenvalueDecomposition#v, Matrix::EigenvalueDecomposition#d, Matrix::EigenvalueDecomposition#v_inv をこの順に並べた配列を返します。
...Matrix::EigenvalueDecomposition#v,
Matrix::EigenvalueDecomposition#d,
Matrix::EigenvalueDecomposition#v_inv
をこの順に並べた配列を返します。... -
Matrix
:: LUPDecomposition # to _ a -> [Matrix , Matrix , Matrix] (21402.0) -
分解した行列を [下半行列, 上半行列, 置換行列] という3要素の配列で 返します。
分解した行列を [下半行列, 上半行列, 置換行列] という3要素の配列で
返します。 -
OpenSSL
:: X509 :: Extension # to _ a -> [String , String , bool] (21302.0) -
拡張領域の内容を、[識別子(extnID), 値(extnValue), 重要度(critical)] という 形で返します。
...拡張領域の内容を、[識別子(extnID), 値(extnValue), 重要度(critical)] という
形で返します。... -
OptionParser
# to _ a -> [String] (21220.0) -
サマリの各行を要素とした配列を返します。
...とした配列を返します。
//emlist[例][ruby]{
require "optparse"
opts = OptionParser.new do |opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.to_a # => ["Usage: test [options]", " -i, --init\n", " -u, --update\n", " -h, --h... -
REXML
:: Attributes # to _ a -> [Attribute] (21208.0) -
属性の配列を返します。
...属性の配列を返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new("<a x='1' y='2' z='3' />")
doc.root.attributes.to_a # => [x='1', y='2', z='3']
//}... -
Shell
:: Filter # to _ a -> [String] (21208.0) -
実行結果を文字列の配列で返します。
...実行結果を文字列の配列で返します。
require 'shell'
Shell.def_system_command("wc")
sh = Shell.new
puts sh.cat("/etc/passwd").to_a... -
Matrix
# to _ a -> Array (21108.0) -
自分自身をArrayに変換したものを返します。
...します。
行ベクトルを配列(Array)としたものの配列(つまり配列の配列)として返します。
//emlist[例][ruby]{
require 'matrix'
a1 = [ 1, 2, 3]
a2 = [10, 15, 20]
a3 = [-1, -2, 1.5]
m = Matrix[a1, a2, a3]
p m.to_a # => [[1, 2, 3], [10, 15, 20], [-1, -2, 1.5]]
//}... -
NilClass
# to _ a -> Array (21108.0) -
空配列 [] を返します。
...空配列 [] を返します。
//emlist[例][ruby]{
nil.to_a #=> []
//}... -
Rake
:: FileList # to _ a -> Array (21108.0) -
内部的な配列を返します。
...内部的な配列を返します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
file_list = FileList['a.c', 'b.c']
file_list.to_a # => ["a.c", "b.c"]
end
//}...