1282件ヒット
[1-100件を表示]
(0.041秒)
ライブラリ
- English (48)
- ビルトイン (394)
- csv (48)
- getoptlong (12)
- json (48)
- matrix (60)
- openssl (12)
- optparse (60)
- pp (24)
- psych (12)
- rake (24)
- readline (24)
-
rexml
/ document (12) -
rinda
/ rinda (36) -
rinda
/ tuplespace (48) - rubygems (12)
-
rubygems
/ format (12) -
rubygems
/ old _ format (12) -
rubygems
/ security (24) -
rubygems
/ specification (60) -
rubygems
/ user _ interaction (12) - scanf (12)
- shellwords (36)
- socket (24)
-
webrick
/ config (12) -
webrick
/ httprequest (24) -
webrick
/ https (12) -
webrick
/ httpserver (12) -
webrick
/ httputils (36) - win32ole (72)
クラス
- Array (129)
- CSV (12)
-
CSV
:: Table (24) -
Encoding
:: Converter (12) -
Gem
:: Format (12) -
Gem
:: OldFormat (12) -
Gem
:: Security :: Policy (12) -
Gem
:: Security :: Signer (12) -
Gem
:: Specification (60) - GetoptLong (12)
-
JSON
:: State (12) - MatchData (60)
- Matrix (60)
- Module (108)
- Object (24)
-
OpenSSL
:: X509 :: ExtensionFactory (12) - OptionParser (36)
-
OptionParser
:: ParseError (24) -
REXML
:: Element (12) -
Rake
:: FileList (12) - Range (14)
- Regexp (12)
-
Rinda
:: TupleEntry (12) -
Rinda
:: TupleSpace (36) -
Rinda
:: TupleSpaceProxy (36) - Socket (12)
- String (57)
- UDPSocket (12)
-
WEBrick
:: HTTPRequest (36) -
WEBrick
:: HTTPServer :: MountTable (12) -
WEBrick
:: HTTPUtils :: FormData (24) -
WIN32OLE
_ VARIANT (60)
モジュール
-
GC
:: Profiler (12) - Gem (12)
-
Gem
:: UserInteraction (12) - JSON (24)
-
JSON
:: Generator :: GeneratorMethods :: Array (12) - Kernel (60)
- Psych (12)
- Shellwords (24)
-
WEBrick
:: Config (12) -
WEBrick
:: HTTPUtils (12) -
WIN32OLE
:: VARIANT (12) - Warning (1)
オブジェクト
-
Readline
:: HISTORY (24) - main (25)
キーワード
-
$ , (12) -
$ INPUT _ RECORD _ SEPARATOR (12) -
$ OFS (12) -
$ OUTPUT _ FIELD _ SEPARATOR (12) -
$ RS (12) - * (24)
- =~ (12)
- DIRECTORIES (12)
- DigestAuth (12)
-
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 1 . 0 (12) - ORDERINGS (12)
-
VT
_ ARRAY (12) - [] (96)
- []= (24)
-
add
_ attributes (12) - addr (12)
-
array
_ attribute (12) -
array
_ attributes (12) -
array
_ nl (12) -
attribute
_ defaults (12) -
attribute
_ names (12) - categories (1)
-
cert
_ chain (12) -
choose
_ from _ list (12) - cipher (12)
- coerce (12)
-
column
_ vector (12) -
create
_ extension (12) - diagonal (12)
- dump (12)
- entries (7)
-
file
_ entries (24) -
filter
_ backtrace (12) -
force
_ encoding (12) - generate (12)
-
generate
_ line (12) - getaddrinfo (12)
- inspect (12)
- join (24)
- list (12)
-
module
_ function (12) - new (12)
- on (36)
- pack (21)
-
pathmap
_ explode (12) - peeraddr (12)
-
pretty
_ print (12) -
pretty
_ print _ cycle (12) -
primitive
_ errinfo (12) - private (68)
-
private
_ class _ method (24) - protected (12)
- public (17)
- read (24)
-
read
_ all (24) -
recvfrom
_ nonblock (12) -
required
_ attributes (12) - result (12)
- rindex (36)
-
row
_ vector (12) -
ruby 1
. 9 feature (12) - scan (12)
- scanf (12)
-
set
_ backtrace (12) - shelljoin (24)
-
split
_ header _ value (12) - take (24)
-
to
_ a (19) -
to
_ ary (12) -
to
_ csv (12) -
to
_ json (12) -
to
_ s (12) - unpack (12)
- unpack1 (9)
- unparse (12)
- value (12)
-
values
_ at (12) - vartype (12)
-
verify
_ gem (12) - リテラル (12)
検索結果
先頭5件
-
WIN32OLE
_ VARIANT . array(dims , vt) -> WIN32OLE _ VARIANT (21207.0) -
配列用のVARIANTオブジェクトを生成します。
...配列用のVARIANTオブジェクトを生成します。
オートメーションメソッド呼び出し用の配列を生成します。なお、OLEオートメー
ションの配列の次元と添え字の関係はVB型だという点に注意してください。こ
れはCと逆順の並び......E::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... -
Array
# rindex -> Enumerator (15106.0) -
指定された val と == で等しい最後の要素の位置を返します。 等しい要素がひとつもなかった時には nil を返します。
...自身と rindex から生成した
Enumerator オブジェクトを返します。
@param val オブジェクトを指定します。
//emlist[例][ruby]{
p [1, 0, 0, 1, 0].rindex(1) #=> 3
p [1, 0, 0, 0, 0].rindex(1) #=> 0
p [0, 0, 0, 0, 0].rindex(1) #=> nil
p [0, 1, 0, 1, 0].rindex {|v| v......> 0} #=> 3
//}
@see Array#index... -
Array
# rindex {|item| . . . } -> Integer | nil (15106.0) -
指定された val と == で等しい最後の要素の位置を返します。 等しい要素がひとつもなかった時には nil を返します。
...自身と rindex から生成した
Enumerator オブジェクトを返します。
@param val オブジェクトを指定します。
//emlist[例][ruby]{
p [1, 0, 0, 1, 0].rindex(1) #=> 3
p [1, 0, 0, 0, 0].rindex(1) #=> 0
p [0, 0, 0, 0, 0].rindex(1) #=> nil
p [0, 1, 0, 1, 0].rindex {|v| v......> 0} #=> 3
//}
@see Array#index... -
Array
# rindex(val) -> Integer | nil (15106.0) -
指定された val と == で等しい最後の要素の位置を返します。 等しい要素がひとつもなかった時には nil を返します。
...自身と rindex から生成した
Enumerator オブジェクトを返します。
@param val オブジェクトを指定します。
//emlist[例][ruby]{
p [1, 0, 0, 1, 0].rindex(1) #=> 3
p [1, 0, 0, 0, 0].rindex(1) #=> 0
p [0, 0, 0, 0, 0].rindex(1) #=> nil
p [0, 1, 0, 1, 0].rindex {|v| v......> 0} #=> 3
//}
@see Array#index... -
Gem
:: Specification . array _ attributes -> Array (12318.0) -
@@array_attributes の複製を返します。
...@@array_attributes の複製を返します。
@see Object#dup... -
Encoding
:: Converter # primitive _ errinfo -> Array (12301.0) -
直前の Encoding::Converter#primitive_convert による変換の結果を保持する五要素の配列を返します。
...直前の Encoding::Converter#primitive_convert による変換の結果を保持する五要素の配列を返します。
@return [result, enc1, enc2, error_bytes, readagain_bytes] という五要素の配列
result は直前の primitive_convert の戻り値です。
それ以外の四要素は......たバイト列、readagain_bytes は先読みによって変換器内部に保持されているバイト列です。
primitive_errinfo はもっぱら Encoding::Converter#primitive_convert と組み合わせて使います。Encoding::Converter#convert を用いている場合にも取得する......ew("EUC-JP", "Shift_JIS")
ec.primitive_convert(src="\xff", dst="", nil, 10)
p ec.primitive_errinfo
#=> [:invalid_byte_sequence, "EUC-JP", "Shift_JIS", "\xFF", ""]
# HIRAGANA LETTER A (\xa4\xa2 in EUC-JP) is not representable in ISO-8859-1.
# Since this error is occur in UTF-8 to ISO-8859-1 conversi... -
Gem
:: Specification . array _ attribute(name) -> () (12201.0) -
Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
...Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
@param name 属性の名前を指定します。
@see Gem::Specification.attribute... -
Array
# pack(template , buffer: String . new) -> String (9218.0) -
配列の内容を template で指定された文字列にしたがって、 バイナリとしてパックした文字列を返します。
...指定した場合は返値も指定した文字列オブジェクトになります。
以下にあげるものは、Array#pack、String#unpack、String#unpack1
のテンプレート文字の一覧です。テンプレート文字は後に「長さ」を表す数字
を続けるこ......32_t
l!<: little endian signed long
//}
=== 各テンプレート文字の説明
説明中、Array#pack と String#unpack で違いのあるものは `/' で区切って
「Array#pack の説明 / String#unpack の説明」としています。
: a
ASCII文字列(ヌル文字を詰める/後......eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWg==".unpack("m0")
# => ["abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"]
//}
@see base64
: M
quoted-printable encoding された文字列
//emlist[][ruby]{
["a b c\td \ne"].pack("M") # => "a b c\td =\n\ne=\n"
"a b c\td =\n\ne=\n".unpack("M") # => ["a... -
Gem
:: Security :: Policy # verify _ gem(signature , data , chain , time = Time . now) -> Array (9201.0) -
与えられたデータを与えられた署名と証明書チェーンで検証します。
...します。
@param data 検証するデータを指定します。
@param chain 検証で使用する証明書チェーンを指定します。
@param time この時刻に有効であることを検証する。
@raise Gem::Security::Exception 検証に失敗した場合に発生します。...