Instance Method インスタンスメソッド

addingObjects(from:)

Returns a new array that is a copy of the receiving array with the objects contained in another array added to the end. 新しい配列を返します、それは受け手側の配列のコピーで、別の配列に含まれるオブジェクトをその終わりに追加されたものです。

Declaration 宣言

func addingObjects(from otherArray: [Any]) -> [Any]

Parameters パラメータ

otherArray

An array. 1つの配列。

Return Value 戻り値

A new array that is a copy of the receiving array with the objects contained in otherArray added to the end. 新しい配列、それは受け手側の配列のコピーで、otherArrayに含まれるオブジェクトがその終わりに追加されたものです。

See Also 参照

Deriving New Arrays 新しい配列を派生させる

Related Documentation 関連文書