1309件ヒット
[1-100件を表示]
(0.081秒)
ライブラリ
- ビルトイン (494)
- bigdecimal (84)
-
cgi
/ core (12) -
cgi
/ html (36) - csv (6)
- date (4)
- drb (24)
-
drb
/ timeridconv (12) - fiddle (48)
-
irb
/ context (132) -
irb
/ ext / save-history (48) -
irb
/ output-method (12) -
minitest
/ spec (1) - mkmf (24)
-
net
/ imap (24) - openssl (36)
-
rdoc
/ rdoc (12) - resolv (24)
-
rexml
/ document (60) -
rexml
/ parsers / pullparser (12) -
rinda
/ tuplespace (48) -
rubygems
/ package / tar _ header (12) -
rubygems
/ source _ index (12) -
rubygems
/ source _ info _ cache (12) -
rubygems
/ source _ info _ cache _ entry (12) - scanf (36)
- socket (60)
- weakref (12)
クラス
-
ARGF
. class (96) - BasicObject (36)
- BigDecimal (84)
- Binding (7)
-
CSV
:: Row (6) -
DRb
:: DRbIdConv (12) -
DRb
:: DRbObject (12) -
DRb
:: TimerIdConv (12) - Data (6)
- Date (2)
- DateTime (2)
-
Fiddle
:: Pointer (48) -
Gem
:: Package :: TarHeader (12) -
Gem
:: SourceIndex (12) -
Gem
:: SourceInfoCache (12) -
Gem
:: SourceInfoCacheEntry (12) - IO (36)
-
IRB
:: Context (180) -
IRB
:: OutputMethod (12) - MatchData (6)
- Module (181)
-
Net
:: IMAP (24) - Object (36)
-
OpenSSL
:: SSL :: SSLSocket (12) -
OpenSSL
:: X509 :: Store (12) -
OpenSSL
:: X509 :: StoreContext (12) -
RDoc
:: RDoc (12) -
REXML
:: Element (36) -
REXML
:: Parsers :: PullEvent (12) - Range (29)
- Regexp (12)
-
Resolv
:: DNS :: Resource :: MX (12) -
Resolv
:: DNS :: Resource :: SOA (12) -
Rinda
:: TupleSpace (48) - Socket (24)
- String (12)
- Struct (24)
- Symbol (12)
- Thread (24)
- Time (2)
- UDPSocket (36)
- WeakRef (12)
モジュール
-
CGI
:: HtmlExtension (36) -
CGI
:: QueryExtension (12) - Kernel (36)
-
REXML
:: Namespace (24)
キーワード
- * (12)
- + (12)
- +@ (12)
- - (12)
- -@ (12)
-
/ (12) - === (17)
-
_ _ drbref (12) -
_ _ getobj _ _ (12) - a (24)
-
abort
_ on _ exception (12) -
abort
_ on _ exception= (12) -
add
_ namespace (12) -
alias
_ method (12) - base (12)
- bind (12)
- binmode (12)
- binmode? (12)
- captures (2)
- connect (12)
-
create
_ makefile (12) - deconstruct (14)
-
deconstruct
_ keys (20) -
deprecate
_ constant (12) - div (12)
- document (12)
- encoding (12)
- error (24)
-
event
_ type (12) -
history
_ file (12) -
history
_ file= (12) - include? (12)
-
infect
_ with _ assertions (1) -
inplace
_ mode (12) -
inplace
_ mode= (12) -
inspect
_ mode= (12) -
install
_ files (12) -
instance
_ eval (24) - list (12)
- lsub (12)
- member? (12)
- namespace (12)
- notify (12)
- ppx (12)
- preference (12)
- prefix (24)
- prefix= (12)
- prefixes (12)
- print (12)
- printf (12)
- private (48)
-
prompt
_ c (12) -
prompt
_ c= (12) -
prompt
_ i (12) -
prompt
_ i= (12) -
prompt
_ mode (12) -
prompt
_ mode= (12) -
prompt
_ n (12) -
prompt
_ n= (12) -
prompt
_ s (12) -
prompt
_ s= (12) - protected (48)
- ptr (12)
- public (48)
- putc (12)
- puts (12)
- quo (12)
- read (12)
-
read
_ all (12) - referer (12)
- refine (12)
- refresh (36)
- refresh! (12)
-
save
_ history (12) -
save
_ history= (12) - scanf (36)
- send (60)
- sign (12)
-
singleton
_ method _ undefined (12) -
source
_ location (7) - take (12)
-
to
_ a (6) -
to
_ obj (24) -
to
_ proc (12) -
to
_ write _ io (12) - values (6)
-
verify
_ result (12) - write (12)
検索結果
先頭5件
-
Resolv
:: DNS :: Resource :: MX # preference -> Integer (15201.0) -
このMXレコードの優先度を返します。
このMXレコードの優先度を返します。 -
Fiddle
:: Pointer # ref -> Fiddle :: Pointer (15124.0) -
自身を指す Pointer オブジェクトを返します。 C 言語におけるポインタへのアドレス演算子の適用 &p と同じです。
...す。
C 言語におけるポインタへのアドレス演算子の適用 &p と同じです。
この返り値には、free 関数がセットされず、size は 0 とされます。
例:
require 'fiddle'
s = 'abc'
cptr = Fiddle::Pointer[s]
cref = cptr.ref
p cref.to_s(4).unpack('l*')[0......] #=> 136121648
p cptr.to_i #=> 136121648
p cref.ptr.to_s #=> "abc"... -
Gem
:: SourceInfoCacheEntry # refresh(source _ uri , all) -> Gem :: SourceIndex (9301.0) -
ソースインデックスを更新します。
...ソースインデックスを更新します。
@param source_uri データを取得する URI を指定します。
@param all 全てのインデックスを更新するかどうかを指定します。... -
Struct
# deconstruct _ keys(array _ of _ names) -> Hash (9123.0) -
self のメンバの名前と値の組を Hash で返します。
...by]{
Customer = Struct.new(:name, :address, :zip)
joe = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
h = joe.deconstruct_keys([:zip, :address])
h # => {:zip=>12345, :address=>"123 Maple, Anytown NC"}
# 引数が nil の場合は全てのメンバを返します。
h = joe.deconstruct_k......nytown NC", :zip=>12345}
//}
[注意] 本メソッドの記述は Struct の下位クラスのインスタンスに対して呼び
出す事を想定しています。Struct.new は Struct の下位クラスを作成する点に
注意してください。
@see d:spec/pattern_matching#matching_non......_primitive_objects... -
Struct
# deconstruct -> [object] (9107.0) -
構造体のメンバの値を配列にいれて返します。
...いれて返します。
//emlist[例][ruby]{
Customer = Struct.new(:name, :address, :zip)
Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345).to_a
# => ["Joe Smith", "123 Maple, Anytown NC", 12345]
//}
[注意] 本メソッドの記述は Struct の下位クラスのインスタンスに対......して呼び
出す事を想定しています。Struct.new は Struct の下位クラスを作成する点に
注意してください。
@see d:spec/pattern_matching#matching_non_primitive_objects... -
CGI
:: QueryExtension # referer -> String (9101.0) -
ENV['HTTP_REFERER'] を返します。
...ENV['HTTP_REFERER'] を返します。... -
DRb
:: DRbObject # _ _ drbref -> Integer|nil (9101.0) -
リモートオブジェクトの識別子を返します。
...リモートオブジェクトの識別子を返します。
DRb::DRbObject.new_with_uri で取り出したフロントオブジェクトは
識別子を持たないため nil を返します。... -
Gem
:: Package :: TarHeader # prefix -> String (9101.0) -
tar のヘッダに含まれる prefix を返します。
...tar のヘッダに含まれる prefix を返します。... -
Gem
:: SourceIndex # refresh! -> self (9101.0) -
自身を再作成します。
自身を再作成します。
@raise StandardError 自身がディスクから読み込んで作成されていない場合に発生します。 -
Gem
:: SourceInfoCache # refresh(all) -> false (9101.0) -
取得元ごとにキャッシュデータを更新します。
取得元ごとにキャッシュデータを更新します。
@param all 真を指定すると全てのキャッシュを更新します。そうでない場合は、
最新の Gem パッケージの情報のみ更新します。