るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
7件ヒット [1-7件を表示] (0.111秒)
トップページ > バージョン:2.3.0[x] > クエリ:l[x] > クエリ:BF[x]

別のキーワード

  1. kernel $-l
  2. matrix l
  3. _builtin $-l
  4. lupdecomposition l
  5. l

ライブラリ

モジュール

キーワード

検索結果

OpenSSL::Cipher::BF (63049.0)

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

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

Socket::Constants::SO_WANTOOBFLAG -> Integer (36601.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 (36601.0)

@todo OOB data is wanted in MSG_FLAG on receive。

@todo
OOB data is wanted in MSG_FLAG on receive。

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

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

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

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

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

@param mode モード文字列

Enumerator::Lazy#chunk {|elt| ... } -> Enumerator::Lazy (9319.0)

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

Enumerable#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]], [true, [3]], [false, [4, 5...

絞り込み条件を変える

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

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

Enumerable#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]], [true, [3]], [false, [4, 5...

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

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

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

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

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

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