るりまサーチ

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

別のキーワード

  1. openssl integer
  2. asn1 integer
  3. _builtin integer
  4. integer chr
  5. integer new

検索結果

<< 1 2 > >>

Integer#anybits?(mask) -> bool (27112.0)

self & mask のいずれかのビットが 1 なら true を返します。

...m mask ビットマスクを整数で指定します。

//emlist[][ruby]{
42.anybits?(42) # => true
0b1010_1010.anybits?(0b1000_0010) # => true
0b1010_1010.anybits?(0b1000_0001) # => true
0b1000_0010.anybits?(0b0010_1100) # => false
//}

@see Integer#allbits?
@see Integer#nobits?...

Psych::Nodes::Stream::ANY -> Integer (18208.0)

任意のエンコーディングを表す値。

...任意のエンコーディングを表す値。

Psych::Parser::ANY と同じ値です。...

Psych::Nodes::Mapping::ANY -> Integer (18202.0)

「任意」のスタイルを意味します。

「任意」のスタイルを意味します。

emitter が適当に style を決めます。

@see Psych::Nodes::Mapping.new,
Psych::Nodes::Mapping#style,
Psych::Handler#start_mapping

Psych::Nodes::Scalar::ANY -> Integer (18202.0)

「任意」のスタイルを意味します。

「任意」のスタイルを意味します。

emitter が適当に style を決めます。

@see Psych::Nodes::Scalar.new,
Psych::Nodes::Scalar#style

Psych::Nodes::Sequence::ANY -> Integer (18202.0)

「任意」のスタイルを意味します。

「任意」のスタイルを意味します。

emitter が適当に style を決めます。

@see Psych::Nodes::Sequence.new,
Psych::Nodes::Sequence#style,
Psych::Handler#start_sequence

絞り込み条件を変える

Psych::Parser::ANY -> Integer (18202.0)

「任意の」エンコーディングを意味します。

「任意の」エンコーディングを意味します。

Socket::Constants::INADDR_ANY -> Integer (6218.0)

A socket bound to INADDR_ANY receives packets from all interfaces and sends from the default IP address。 IPv4アドレスの 0.0.0.0 に対応する整数です。

...A socket bound to INADDR_ANY receives packets from
all interfaces and sends from the default IP address。
IPv4アドレスの 0.0.0.0 に対応する整数です。

@see netinet/in.h(header), ip(7linux), ip(4freebsd)...

Socket::INADDR_ANY -> Integer (6218.0)

A socket bound to INADDR_ANY receives packets from all interfaces and sends from the default IP address。 IPv4アドレスの 0.0.0.0 に対応する整数です。

...A socket bound to INADDR_ANY receives packets from
all interfaces and sends from the default IP address。
IPv4アドレスの 0.0.0.0 に対応する整数です。

@see netinet/in.h(header), ip(7linux), ip(4freebsd)...

OpenSSL::X509::PURPOSE_ANY -> Integer (6202.0)

証明書の目的を確認しないことを意味します。

証明書の目的を確認しないことを意味します。

OpenSSL::X509::Store#purpose= や
OpenSSL::X509::StoreContext#purpose= で設定します。

Array#any? -> bool (6157.0)

すべての要素が偽である場合に false を返します。 真である要素があれば、ただちに true を返します。

...[例][ruby]{
p [1, 2, 3].any? {|v| v > 3 } # => false
p [1, 2, 3].any? {|v| v > 1 } # => true
p [].any? {|v| v > 0 } # => false
p %w[ant bear cat].any?(/d/) # => false
p [nil, true, 99].any?(Integer) # => true
p [nil, true, 99].any? # => true
p [].any?...
...# => false
//}

@see Enumerable#any?...

絞り込み条件を変える

<< 1 2 > >>