1124件ヒット
[201-300件を表示]
(0.032秒)
別のキーワード
種類
- インスタンスメソッド (639)
- 特異メソッド (337)
- モジュール関数 (148)
ライブラリ
- ビルトイン (623)
- base64 (24)
- csv (12)
- drb (12)
- erb (16)
-
irb
/ inspector (12) - matrix (84)
-
minitest
/ spec (3) - mkmf (60)
- pathname (36)
- prime (24)
- psych (50)
- rake (36)
-
rexml
/ document (36) -
rubygems
/ dependency _ installer (12) -
rubygems
/ source _ info _ cache (24) - shellwords (12)
- syslog (24)
- win32ole (24)
クラス
- CSV (12)
-
DRb
:: DRbObject (12) - Data (3)
- ERB (16)
- Enumerator (24)
-
Gem
:: DependencyInstaller (12) -
Gem
:: SourceInfoCache (24) - Hash (24)
- IO (168)
-
IRB
:: Inspector (12) - Matrix (72)
- Method (44)
- Module (13)
- Object (14)
- Pathname (36)
-
Prime
:: PseudoPrimeGenerator (24) -
REXML
:: Child (12) -
REXML
:: Element (24) -
Rake
:: TaskArguments (12) - String (85)
- Symbol (12)
- Thread (36)
- Time (12)
- Vector (12)
-
WIN32OLE
_ EVENT (24)
モジュール
- Base64 (24)
- Enumerable (115)
- FileUtils (12)
- Kernel (124)
- Marshal (24)
- Psych (38)
-
Rake
:: TaskManager (12) - Shellwords (12)
- Syslog (24)
キーワード
- < (12)
- === (8)
- [] (12)
- abort (24)
-
angle
_ with (12) - build (24)
- call (24)
- children (12)
-
delete
_ prefix (8) -
delete
_ prefix! (8) -
delete
_ suffix (8) -
delete
_ suffix! (8) -
dir
_ config (12) - dump (48)
- each (24)
-
each
_ child (24) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) -
each
_ with _ index (48) -
each
_ with _ object (24) -
end
_ with? (18) -
enhance
_ with _ matching _ rule (12) - exit (12)
-
find
_ gems _ with _ sources (12) -
infect
_ with _ assertions (1) -
keys
_ with _ inspector (12) - mask (12)
- mask= (12)
-
max
_ by (48) -
must
_ be _ within _ delta (1) -
must
_ be _ within _ epsilon (1) - new (41)
-
new
_ with _ uri (12) -
on
_ event (12) -
on
_ event _ with _ outargs (12) - popen (168)
-
replace
_ with (12) -
report
_ on _ exception (18) -
report
_ on _ exception= (18) - result (8)
-
result
_ with _ hash (8) -
safe
_ load (14) -
search
_ with _ source (24) - sh (12)
- shelljoin (12)
-
start
_ with? (18) - strftime (12)
- system (28)
-
to
_ h (19) -
transform
_ keys (12) -
transform
_ keys! (12) -
urlsafe
_ decode64 (12) -
urlsafe
_ encode64 (12) -
with
_ config (24) -
with
_ defaults (12) -
with
_ object (48) -
with
_ werror (24) -
yaml
_ tag (12)
検索結果
先頭5件
- Kernel
# with _ werror(opt , opts = nil) {|opt| . . . } -> object - Matrix
# each _ with _ index(which = :all) -> Enumerator - Matrix
# each _ with _ index(which = :all) {|e , row , col| . . . } -> self - Prime
:: PseudoPrimeGenerator # with _ object(obj) -> Enumerator - Prime
:: PseudoPrimeGenerator # with _ object(obj) {|prime , obj| . . . } -> object
-
Kernel
# with _ werror(opt , opts = nil) {|opt| . . . } -> object (6114.0) -
@todo 内部用?
...@todo 内部用?
???
@param opt ????
@param opts ????
@return ブロックを評価した結果を返します。... -
Matrix
# each _ with _ index(which = :all) -> Enumerator (6114.0) -
行列の各要素をその位置とともに引数としてブロックを呼び出します。
...ます。
//emlist[例][ruby]{
require 'matrix'
Matrix[ [1,2], [3,4] ].each_with_index do |e, row, col|
puts "#{e} at #{row}, #{col}"
end
# => 1 at 0, 0
# => 2 at 0, 1
# => 3 at 1, 0
# => 4 at 1, 1
//}
@param which どの要素に対してブロックを呼び出すのかを Symbol で... -
Matrix
# each _ with _ index(which = :all) {|e , row , col| . . . } -> self (6114.0) -
行列の各要素をその位置とともに引数としてブロックを呼び出します。
...ます。
//emlist[例][ruby]{
require 'matrix'
Matrix[ [1,2], [3,4] ].each_with_index do |e, row, col|
puts "#{e} at #{row}, #{col}"
end
# => 1 at 0, 0
# => 2 at 0, 1
# => 3 at 1, 0
# => 4 at 1, 1
//}
@param which どの要素に対してブロックを呼び出すのかを Symbol で... -
Prime
:: PseudoPrimeGenerator # with _ object(obj) -> Enumerator (6114.0) -
与えられた任意のオブジェクトと要素をブロックに渡して評価します。
...@param obj 任意のオブジェクトを指定します。
@return 最初に与えられたオブジェクトを返します。
@return ブロックを与えられた場合は obj を返します。ブロックを与えられなかった場合は Enumerator を返します。
@see Enumerator#with_... -
Prime
:: PseudoPrimeGenerator # with _ object(obj) {|prime , obj| . . . } -> object (6114.0) -
与えられた任意のオブジェクトと要素をブロックに渡して評価します。
...@param obj 任意のオブジェクトを指定します。
@return 最初に与えられたオブジェクトを返します。
@return ブロックを与えられた場合は obj を返します。ブロックを与えられなかった場合は Enumerator を返します。
@see Enumerator#with_... -
IRB
:: Inspector . keys _ with _ inspector(inspector) -> Array (6113.0) -
引数で指定した IRB::Inspector に対応する key の配列を返します。
...引数で指定した IRB::Inspector に対応する key の配列を返します。
@param inspector IRB::Inspector オブジェクトを指定します。
IRB::Inspector.keys_with_inspector(IRB::Inspector::INSPECTORS[true])
# => [true, :p, "p", :inspect, "inspect"]... -
Rake
:: TaskArguments # with _ defaults(defaults) -> Hash (6113.0) -
パラメータにデフォルト値をセットします。
...パラメータにデフォルト値をセットします。
@param defaults デフォルト値として使用するキーと値を格納したハッシュを指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
arguments =......", "name2"], ["value1", "value2"])
arguments.to_hash # => {:name1=>"value1", :name2=>"value2"}
arguments.with_defaults({ default_key: "default_value"}) # => {:default_key=>"default_value", :name1=>"value1", :name2=>"value2"}
arguments.to_hash... -
Rake
:: TaskManager # enhance _ with _ matching _ rule(task _ name , level = 0) -> Rake :: Task | nil (6113.0) -
与えられたタスク名にマッチしたルールが存在する場合は、そのタスクに見つかったルールの 事前タスクとアクションを追加して返します。
...は、そのタスクに見つかったルールの
事前タスクとアクションを追加して返します。
@param task_name タスクの名前を指定します。
@param level 現在のルール解決のネストの深さを指定します。
@raise RuntimeError ルールの解決時に... -
Vector
# angle _ with(v) -> Float (6113.0) -
v と self がなす角度を返します。
...v と self がなす角度を返します。
//emlist[例][ruby]{
require 'matrix'
Vector[1, 0].angle_with(Vector[0, 1]) # => Math::PI/2
//}
@param v このベクトルと self とがなす角度を計算します
@raise ZeroVectorError self もしくは v のどちらかが零ベクトルであ...