るりまサーチ (Ruby 2.4.0)

最速Rubyリファレンスマニュアル検索!
5件ヒット [1-5件を表示] (0.225秒)
トップページ > バージョン:2.4.0[x] > クエリ:E[x] > クエリ:i[x] > クエリ:MIN[x] > 種類:ライブラリ[x]

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix rank_e
  5. open3 capture2e

キーワード

検索結果

minitest/autorun (54004.0)

このファイルを Kernel.#require するとテストが test/unit と同じように自動実行されます。

このファイルを Kernel.#require するとテストが test/unit と同じように自動実行されます。

minitest/mock (54004.0)

シンプルなモックライブラリです。

シンプルなモックライブラリです。

このライブラリはbundled gem(gemファイルのみを同梱)です。詳しい内容は下
記のページを参照してください。

* rubygems.org: https://rubygems.org/gems/minitest
* プロジェクトページ: https://github.com/seattlerb/minitest
* リファレンス: https://www.rubydoc.info/gems/minitest

minitest/spec (54004.0)

BDD 風にテストを書くためのクラスやメソッドを定義するためのライブラリです。

BDD 風にテストを書くためのクラスやメソッドを定義するためのライブラリです。

このライブラリはbundled gem(gemファイルのみを同梱)です。詳しい内容は下
記のページを参照してください。

* rubygems.org: https://rubygems.org/gems/minitest
* プロジェクトページ: https://github.com/seattlerb/minitest
* リファレンス: https://www.rubydoc.info/gems/minitest

minitest/unit (54004.0)

ユニットテストを行うためのライブラリです。

ユニットテストを行うためのライブラリです。

このライブラリはbundled gem(gemファイルのみを同梱)です。詳しい内容は下
記のページを参照してください。

* rubygems.org: https://rubygems.org/gems/minitest
* プロジェクトページ: https://github.com/seattlerb/minitest
* リファレンス: https://www.rubydoc.info/gems/minitest

tsort (76.0)

tsort はトポロジカルソートと強連結成分に関するモジュールを提供します。

tsort はトポロジカルソートと強連結成分に関するモジュールを提供します。

=== Example

//emlist[][ruby]{
require 'tsort'

class Hash
include TSort
alias tsort_each_node each_key
def tsort_each_child(node, &block)
fetch(node).each(&block)
end
end

{1=>[2, 3], 2=>[3], 3=>[], 4=>[]}.tsort
#=> [3, 2, 1, 4]

{1=>[2], 2=>[3, 4...

絞り込み条件を変える