228件ヒット
[201-228件を表示]
(0.150秒)
ライブラリ
- ビルトイン (12)
- json (72)
- rake (36)
-
rexml
/ document (108)
クラス
-
JSON
:: State (72) -
ObjectSpace
:: WeakMap (12) -
REXML
:: Attribute (12) -
REXML
:: Attributes (24) -
REXML
:: Element (72) -
Rake
:: NameSpace (24)
モジュール
-
Rake
:: TaskManager (12)
キーワード
- [] (12)
- []= (12)
-
add
_ namespace (24) - attribute (12)
-
delete
_ namespace (12) -
get
_ attribute _ ns (12) -
in
_ namespace (12) - namespace (24)
- namespaces (24)
- space= (12)
-
space
_ before (12) -
space
_ before= (12) - tasks (12)
-
to
_ h (12) -
to
_ hash (12)
検索結果
先頭3件
-
JSON
:: State # to _ hash -> Hash (6119.0) -
自身をハッシュに変換します。
...//emlist[例][ruby]{
require "json"
require "pp"
json_state = JSON::State.new
pp json_state.to_h
# => {:indent=>"",
# :space=>"",
# :space_before=>"",
# :object_nl=>"",
# :array_nl=>"",
# :allow_nan=>false,
# :ascii_only=>false,
# :max_nesting=>100,
# :depth=>0,
#......:buffer_initial_length=>1024}
//}... -
ObjectSpace
:: WeakMap # []=(key , value) (6007.0) -
引数 key から引数 value への参照を作成します。
...lue への参照を作成します。
@param key 参照元のオブジェクトを指定します。
@param value 参照先のオブジェクトを指定します。
//emlist[例][ruby]{
weak_map = ObjectSpace::WeakMap.new
key = "text"
weak_map[key] = "test" # => test
weak_map[key] # => test
//}... -
Rake
:: NameSpace # [](name) -> Rake :: Task (3107.0) -
与えられた名前のタスクを返します。
...のタスクを返します。
@param name タスクの名前を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
namespace :ns do |ns|
task :ts1 do
end
task :ts2 do
end
ns[:ts1] # => <Rake::Task ns:ts1 => []>
ns[:ts2] # => <Rake::Task ns:ts2 => []>
end
//}...