Instance Methodswift 6.1.2Swift
joined
Returns a lazy sequence that concatenates the elements of this sequence of sequences.
func joined() -> LazySequence<FlattenSequence<Self.Elements>> Returns a lazy sequence that concatenates the elements of this sequence of sequences.
func joined() -> LazySequence<FlattenSequence<Self.Elements>> ss20LazySequenceProtocolPsST7ElementRpzrlE6joineds0aB0Vys07FlattenB0Vy8ElementsQzGGyF What are these?7ZAWQwhere Self.Element:Sequenceimport Swiftprotocol LazySequenceProtocol : SequenceA sequence on which normally-eager sequence operations are implemented lazily.
@frozen struct LazySequence<Base> where Base : SequenceA sequence containing the same elements as a Base sequence, but on which some operations such as map and filter are implemented lazily.
@frozen struct FlattenSequence<Base> where Base : Sequence, Base.Element : SequenceA sequence consisting of all the elements contained in each segment contained in some Base sequence.
associatedtype Elements : Sequence = Self where Self.Element == Self.Elements.ElementA Sequence that can contain the same elements as this one, possibly with a simpler type.
protocol Sequence<Element>A type that provides sequential, iterated access to its elements.