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
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
新しい配列を派生させる
func adding(Any) -> [Any]
Returns a new array that is a copy of the receiving array with a given object added to the end.
新しい配列を返します、それは、指定されたオブジェクトをその終わりに追加した受け手側の配列のコピーです。
func filtered(using: NSPredicate) -> [Any]
Evaluates a given predicate against each object in the receiving array and returns a new array containing the objects for which the predicate returns true.
与えられた述部を受け手側の配列の中の各オブジェクトに対して評価して、その述部に対してtrueを返すオブジェクトを含んでいる新しい配列を返します。
func subarray(with: NSRange) -> [Any]
Returns a new array containing the receiving array’s elements that fall within the limits specified by a given range.
受け手側の配列が持つ要素を含んでいる新しい配列を返します、それは、与えられた範囲によって指定される限度内に収まるものです。
Related Documentation
関連文書
func addObjects(from: [Any])
Adds the objects contained in another given array to the end of the receiving array’s content.
別の与えられた配列の中に含まれるオブジェクトそれらをこの受け手側の配列の持つ内容の終わりに加えます。