Extracting subsequences
Swift’s standard library offers several different APIs for extracting a range of elements from any sequence. For example, we can use dropFirst
and dropLast
to remove the first or last element — or use prefix
and suffix
to extract a subsequence with a given amount of leading or trailing elements.
// Since the first argument passed to a command line
// tool is the execution path, we drop it to have the
// first element become the first user-passed argument:
let arguments = CommandLine.arguments.dropFirst()
// Calling 'prefix' or 'suffix' on a sequence lets us
// extract a subsequence containing up to a certain
// number of elements, without crashing if the sequence
// doesn't contain enough elements:
let intro = text.split(separator: " ").prefix(10)
let outro = text.split(separator: " ").suffix(10)
// The above operations are optimized to not cause
// unnecessary copying, so if we want to turn the
// results into a new array, we must do so explicitly:
let words = Array(intro)
Support Swift by Sundell by checking out this sponsor:

Emerge: Continuously monitor and reduce your app’s size. Emerge’s easy to use plugins for GitHub and fastlane will automatically scan your app’s binary and provide you with simple, actionable suggestions on how to make it smaller and, in turn, faster for your users to download. Set up a demo now!