Contents

append(contentsOf:)

Adds the specified sequence of entities to the end of this collection, in order.

Declaration

mutating func append<S>(contentsOf sequence: S) where S : Sequence, S.Element : Entity

Parameters

  • sequence:

    The entities to add to the collection.

Discussion