るりまサーチ

最速Rubyリファレンスマニュアル検索!
5824件ヒット [1-100件を表示] (0.195秒)
トップページ > クエリ:-[x] > クエリ:n[x] > クエリ:constants[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method gets
  4. irb/input-method new
  5. matrix -

ライブラリ

クラス

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

RDoc::Context#constants -> [RDoc::Constant] (27401.0)

追加された RDoc::Constant の配列を返します。

...追加された RDoc::Constant の配列を返します。...

Module#constants(inherit = true) -> [Symbol] (24373.0)

そのモジュール(またはクラス)で定義されている定数名の配列を返します。

...ます。

inherit に真を指定すると
スーパークラスやインクルードしているモジュールの定数も含みます。
Object のサブクラスの場合、Objectやそのスーパークラスで定義されている
定数は含まれません。 Object.constants とすると...
...am inherit true を指定するとスーパークラスや include したモジュールで
定義された定数が対象にはなります。false を指定した場合 対象にはなりません。

@see Module.constants, Kernel.#local_variables, Kernel.#global_variables, Object#instance_...
...ule.constants

class Foo
FOO = 1
end
class Bar
BAR = 1

# Bar は BAR を含む
p constants # => [:BAR]
# 出力に FOO は含まれない
p Module.constants - $clist # => [:BAR, :Bar, :Foo]
class Baz
# Baz は定数を含まない
p constants...

Module.constants -> [Symbol] (24313.0)

このメソッドを呼び出した時点で参照可能な定数名の配列を返します。

...//emlist[例][ruby]{
class C
FOO = 1
end
p Module.constants # => [:RUBY_PLATFORM, :STDIN, ..., :C, ...]
# 出力中に :FOO は現われない
//}

@see Module#constants, Kernel.#local_variables, Kernel.#global_variables, Object#instance_variables, Module#class_variables...

GC::INTERNAL_CONSTANTS -> {Symbol => Integer} (18507.0)

GC用内部定数の値を保持するハッシュテーブルです。

...GC用内部定数の値を保持するハッシュテーブルです。

GC::INTERNAL_CONSTANTS
# => {:RVALUE_SIZE=>40, :HEAP_PAGE_OBJ_LIMIT=>408, :HEAP_PAGE_BITMAP_SIZE=>56, :HEAP_PAGE_BITMAP_PLANES=>4}...

rubygems/commands/generate_index_command (18036.0)

ある Gem サーバに対するインデックスを作成するためのライブラリです。

...nerate_index [options]
Options:
-
d, --directory=DIRNAME repository base dir containing gems subdir
Common Options:
-
h, --help このコマンドのヘルプを表示します
-
V, --[no-]verbose 表示を詳細にします
-
...
...q, --quiet 静かに実行します
-
-config-file FILE 指定された設定ファイルを使用します
-
-backtrace バックトレースを表示します
-
-debug Ruby 自体のデバッグオプ...
....<version>.Z # Marshal full index
yaml
yaml.Z # legacy YAML full index

The .Z and .rz extension files are compressed with the inflate algorithm.
The
Marshal version number comes from ruby's Marshal::MAJOR_VERSION and
Marshal::MINOR_VERSION constants. It is...

絞り込み条件を変える

Socket::Constants::IFF_POINTOPOINT (12232.0)

point-to-point link

...point-to-point link...

Socket::Constants::INADDR_UNSPEC_GROUP -> Integer (12212.0)

The reserved multicast group。 IPv4の 244.0.0.0 に対応する整数です。

...The reserved multicast group。
IPv4の 244.0.0.0 に対応する整数です。

@see http://www.iana.org/assignments/multicast-addresses/multicast-addresses.xml, 5771...

Socket::Constants::IP_OPTIONS -> Integer (12206.0)

IP options to be included in packets。 BasicSocket#getsockopt, BasicSocket#setsockopt の第2引数(optname)に使用します。

...IP options to be included in packets。
BasicSocket#getsockopt, BasicSocket#setsockopt
の第2引数(optname)に使用します。

@see Socket::Constants::IPPROTO_IP,
ip(4freebsd), ip(7linux)...

Socket::Constants::PF_UNSPEC -> Integer (12206.0)

プロトコルファミリー不定。

...プロトコルファミリー不定。

@see Socket::Constants::AF_UNSPEC, Socket.open...

Socket::Constants::SO_TIMESTAMPNS -> Integer (12206.0)

@todo Receive nanosecond timestamp with datagrams (timespec)。

...@todo
Receive nanosecond timestamp with datagrams (timespec)。

@see Socket::Constants::SO_TIMESTAMP,
Socket::AncillaryData#timestamp...

絞り込み条件を変える

<< 1 2 3 ... > >>