るりまサーチ

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. matrix i

ライブラリ

クラス

モジュール

キーワード

検索結果

OpenSSL::Cipher::BF (21016.0)

BF(BlowFish)暗号を表すクラス

...BF(BlowFish)暗号を表すクラス...

OpenSSL::Cipher::BF.new(mode) -> OpenSSL::Cipher::BF (6217.0)

BF(BlowFish)暗号オブジェクトを生成し、返します。

...BF(BlowFish)暗号オブジェクトを生成し、返します。

モードを文字列 mode で指定します。

指定可能なモードは OpenSSL::Cipher.ciphers で取得できます。

@param mode モード文字列...

Socket::Constants::SO_WANTOOBFLAG -> Integer (6200.0)

@todo OOB data is wanted in MSG_FLAG on receive。

...@todo
OOB data is wanted in MSG_FLAG on receive。...

Socket::SO_WANTOOBFLAG -> Integer (6200.0)

@todo OOB data is wanted in MSG_FLAG on receive。

...@todo
OOB data is wanted in MSG_FLAG on receive。...

SecureRandom.uuid -> String (6106.0)

バージョン 4 の UUID (Universally Unique IDentifier) を生成して返します。

...ジョン 4 の UUID (Universally Unique IDentifier) を生成して返します。

version 4 の UUID は全くランダムです (バージョンを除いて)。
この UUID は MAC アドレスや時刻などのような意味のある情報を含みません。

@raise NotImplementedError 安...
...全な乱数発生器が使えない場合に発生します。

require 'securerandom'
p SecureRandom.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
p SecureRandom.uuid #=> "62936e70-1815-439b-bf89-8492855a7e6b"

@see 4122...

絞り込み条件を変える

URI::MailTo#to=(s) (3006.0)

自身の e-mail アドレスを文字列で設定します。

...自身の e-mail アドレスを文字列で設定します。

@param s 自身の e-mail アドレスを文字列で指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

例:
require 'uri'
m = URI.parse("mailto:nospam@example.com")
m.to = "no...
...spaaaam@example.com"
p m #=> #<URI::MailTo:0xb7bf0614 URL:mailto:nospaaaam@example.com>...

Enumerator::Lazy#chunk(initial_state) {|elt, state| ... } -> Enumerator::Lazy (106.0)

Enumerable#chunk と同じですが、配列ではなく Enumerator::Lazy を返します。

...chunk と同じですが、配列ではなく Enumerator::Lazy を返します。

//emlist[例][ruby]{
1.step.lazy.chunk{ |n| n % 3 == 0 }
# => #<Enumerator::Lazy: #<Enumerator: #<Enumerator::Generator:0x007f8bf18118f0>:each>>

1.step.lazy.chunk{ |n| n % 3 == 0 }.take(5).force
# => [[false, [1, 2]]...