るりまサーチ

最速Rubyリファレンスマニュアル検索!
787件ヒット [1-100件を表示] (0.103秒)

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

モジュール

オブジェクト

検索結果

<< 1 2 3 ... > >>

WIN32OLE_VARIANT.array(dims, vt) -> WIN32OLE_VARIANT (21208.0)

配列用のVARIANTオブジェクトを生成します。

...配列用のVARIANTオブジェクトを生成します。

オートメーションメソッド呼び出し用の配列を生成します。なお、OLEオートメー
ションの配列の次元と添え字の関係はVB型だという点に注意してください。こ
れはCと逆順の並び...
...vt 配列要素の型をWIN32OLE::VARIANTの定数で指定します。
@return 指定された次元/要素数を持つWIN32OLE_VARIANTオブジェクト。

次の例は、最初の次元が3要素、次の次元が4要素の2次元配列を生成する例です。

ole_ary = WIN32OLE_VARIANT....
...array([3,4], WIN32OLE::VARIANT::VT_I4)
ruby_ary = ole_ary.value # => [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]

@see WIN32OLE_VARIANT#value, WIN32OLE::VARIANT...

MiniTest::Unit::TestCase.test_suites -> Array (18302.0)

テストクラス名のリストを返します。

テストクラス名のリストを返します。

Array.try_convert(obj) -> Array | nil (15226.0)

to_ary メソッドを用いて obj を配列に変換しようとします。

...to_ary メソッドを用いて obj を配列に変換しようとします。

何らかの理由で変換できないときには nil を返します。
このメソッドは引数が配列であるかどうかを調べるために使えます。

//emlist[例][ruby]{
Array
.try_convert([1]) # =>...
...[1]
Array
.try_convert("1") # => nil

if tmp = Array.try_convert(arg)
# the argument is an array
elsif tmp = String.try_convert(arg)
# the argument is a string
end
//}...

Gem::Specification.array_attributes -> Array (12319.0)

@@array_attributes の複製を返します。

...@@array_attributes の複製を返します。

@see Object#dup...

Gem::Specification.array_attribute(name) -> () (12202.0)

Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。

...Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。

@param name 属性の名前を指定します。

@see Gem::Specification.attribute...

絞り込み条件を変える

MiniTest::Unit::TestCase.test_methods -> Array (12202.0)

テストメソッドのリストを返します。

...テストメソッドのリストを返します。

MiniTest::Unit::TestCase.test_order の値が :random である場合は
返されるメソッドリストの順番はランダムです。
そうでない場合は、文字コード順にソートされます。...

Array.[](*item) -> Array (9220.0)

引数 item を要素として持つ配列を生成して返します。

...数 item を要素として持つ配列を生成して返します。

Array
のサブクラスを作成したしたときに、そのサブクラスのインスタンスを作成
しやすくするために用意されている。

@param item 配列の要素を指定します。

//emlist[例][rub...
...y]{
Array[1, 2, 3] #=> [1, 2, 3]

class SubArray < Array
# ...
end
p SubArray[1, 2, 3] # => [1, 2, 3]
//}...

FileUtils.options -> Array (9202.0)

オプション名の配列を返します。

...オプション名の配列を返します。

//emlist[][ruby]{
require 'fileutils'
FileUtils.options
# => ["verbose", "mode", "noop", "parents", "force", "preserve", "dereference_root", "remove_destination", "secure", "mtime", "nocreate"]
//}...
...オプション名の配列を返します。

//emlist[][ruby]{
require 'fileutils'
FileUtils.options
# => ["noop", "verbose", "force", "mode", "parents", "owner", "group", "preserve", "dereference_root", "remove_destination", "secure", "mtime", "nocreate"]
//}...

FileUtils.options_of(mid) -> Array (9202.0)

与えられたメソッド名で使用可能なオプション名の配列を返します。

...与えられたメソッド名で使用可能なオプション名の配列を返します。

@param mid メソッド名を指定します。

//emlist[][ruby]{
require 'fileutils'
FileUtils.options_of(:rm) # => ["noop", "verbose", "force"]
//}...

IRB::Inspector.keys_with_inspector(inspector) -> Array (9202.0)

引数で指定した IRB::Inspector に対応する key の配列を返します。

...引数で指定した IRB::Inspector に対応する key の配列を返します。

@param inspector IRB::Inspector オブジェクトを指定します。

IRB::Inspector.keys_with_inspector(IRB::Inspector::INSPECTORS[true])
# => [true, :p, "p", :inspect, "inspect"]...

絞り込み条件を変える

MiniTest.filter_backtrace(backtrace) -> Array (9202.0)

バックトレースからこのライブラリに関する部分を取り除いた結果を返します。

...バックトレースからこのライブラリに関する部分を取り除いた結果を返します。

@param backtrace バックトレースを指定します。...

Rake::Task.tasks -> Array (9202.0)

定義されているタスクのリストを返します。

定義されているタスクのリストを返します。
<< 1 2 3 ... > >>