213件ヒット
[201-213件を表示]
(0.032秒)
別のキーワード
クラス
- Array (21)
- BasicObject (168)
- String (12)
- Time (12)
キーワード
- ! (12)
- != (12)
- == (12)
-
_ _ id _ _ (12) -
_ _ send _ _ (24) - equal? (12)
-
instance
_ eval (24) -
instance
_ exec (12) -
method
_ missing (12) - pack (21)
-
singleton
_ method _ added (12) -
singleton
_ method _ removed (12) -
singleton
_ method _ undefined (12) - strftime (12)
- unpack (12)
検索結果
-
Array
# pack(template , buffer: String . new) -> String (9.0) -
配列の内容を template で指定された文字列にしたがって、 バイナリとしてパックした文字列を返します。
...こまでデータがあ
るかを示している)。
ISO/IEC 8825-1:1995 : Information technology−ASN.1 encoding rules : Specification of Basic Encoding Rules(BER) に定められる整数の符号化方法。
//emlist[][ruby]{
[0].pack("w") # => "\x00"
[1].pack("w")... -
String
# unpack(template) -> Array (9.0) -
Array#pack で生成された文字列を テンプレート文字列 template にしたがってアンパックし、 それらの要素を含む配列を返します。
...こまでデータがあ
るかを示している)。
ISO/IEC 8825-1:1995 : Information technology−ASN.1 encoding rules : Specification of Basic Encoding Rules(BER) に定められる整数の符号化方法。
//emlist[][ruby]{
[0].pack("w") # => "\x00"
[1].pack("w")...