Initializer
init(dictionary:)
Initializes a newly allocated dictionary by placing in it the keys and values contained in another given dictionary.
新しくアロケートされた辞書を別の与えられた辞書に含まれるキーと値をそれの中に置くことによって初期化します。
Declaration
宣言
convenience init(dictionary otherDictionary: [AnyHashable
: Any])
Parameters
パラメータ
otherDictionary
A dictionary containing the keys and values with which to initialize the new dictionary.
それで新しい辞書を初期化することになるキーと値を含んでいる辞書。
Return Value
戻り値
An initialized dictionary—which might be different than the original receiver—containing the keys and values found in otherDictionary
.
初期化された辞書 — それは元のレシーバとは異なるかもしれません — otherDictionary
において見つかったキーと値を含んでいます。
See Also
参照
Creating a Dictionary from Another Dictionary
辞書を別の辞書から作成する
Related Documentation
関連文書
+ dictionaryWithDictionary:
Creates a dictionary containing the keys and values from another given dictionary.
他の与えられた辞書からのキーと値を含んでいる辞書を作成します。