swift-language
dpearson2699/swift-ios-skills
Modern Swift language patterns and idioms for core code: expressions, typed throws, builders, wrappers, and type system features.
What is swift-language?
Covers modern Swift language constructs for non-concurrency, non-SwiftUI code targeting Swift 6.3. Use when writing core Swift involving generics, protocols, enums, closures, or modern language features; route deep Codable to swift-codable, formatting/localization to swift-formatstyle, and API naming to swift-api-design-guidelines.
- If/switch expressions (Swift 5.9+) for direct value assignment and returns
- Typed throws (Swift 6+) with exhaustive error handling via local error enums
- Result builders for DSL-style syntax with buildBlock, buildExpression, buildOptional, buildEither, buildArray methods
- Property wrappers with wrappedValue and projectedValue for encapsulated storage patterns
- Opaque types (some Protocol) and existential types (any Protocol) for type hiding and heterogeneous collections
- Guard patterns, Never type, and modern collection APIs (count(where:), contains(where:), replacing())
How to install swift-language
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill swift-languageHow to use swift-language
- 1.Install the skill via npx skills add https://github.com/dpearson2699/swift-ios-skills --skill swift-language
- 2.Reference if/switch expressions when assigning or returning values instead of ternary or multi-statement blocks
- 3.Use typed throws(ErrorEnum) for functions with a single local error type to enable exhaustive error handling
- 4.Apply result builders when designing DSL-style APIs that accept closure-based content
- 5.Use property wrappers to encapsulate repeated access patterns like validation or clamping
- 6.Choose some Protocol for return types to hide implementation; use any Protocol for heterogeneous collections
- 7.Leverage modern collection APIs like count(where:) and contains(where:) instead of filter().count patterns
Use cases
- Modernizing helper functions to use if/switch expressions and typed throws for clearer error handling
- Building custom result builders for domain-specific languages beyond SwiftUI
- Designing property wrappers to encapsulate validation, clamping, or transformation logic
- Choosing between opaque and existential types when designing generic APIs
- Applying modern collection methods and string interpolation in data processing code
- Swift developers writing core business logic and data models
- Library authors designing generic APIs with modern type system features
- Teams modernizing Swift codebases to Swift 5.9+ and Swift 6+ syntax
swift-language FAQ
Use typed throws(ErrorEnum) only when callers benefit from exhaustive error handling with a single local error type. For mixed error sources or propagating multiple error types, use untyped throws.
some Protocol (opaque type) hides the concrete type from the caller but the compiler knows it; use for return types and parameters. any Protocol (existential) is a runtime box that can hold any conforming type; use for heterogeneous collections and dynamic type erasure.
No. If/switch expressions allow only single expressions per branch. For multi-statement logic, use traditional if/switch statements.
Property wrappers encapsulate storage and access patterns for reuse across multiple properties. Use them when the same pattern applies to multiple properties; use computed properties for one-off logic.
Route deep Codable/API decoding to swift-codable, detailed formatting/localization to swift-formatstyle, API naming conventions to swift-api-design-guidelines, concurrency to swift-concurrency, and SwiftUI state/view work to swiftui-patterns.
Full instructions (SKILL.md)
Source of truth, from dpearson2699/swift-ios-skills.
name: swift-language description: "Apply modern Swift language patterns and idioms for non-concurrency, non-SwiftUI code. Covers if/switch expressions (Swift 5.9+), typed throws (Swift 6+), result builders, property wrappers, opaque and existential types (some vs any), guard patterns, Never type, Regex builders (Swift 5.7+), basic Codable shaping (CodingKeys, custom decoding, nested containers), modern collection APIs (count(where:), contains(where:), replacing()), basic FormatStyle usage, and string interpolation patterns. Use when writing core Swift code involving generics, protocols, enums, closures, or modern language features; route deep Codable to swift-codable, detailed formatting/localization to swift-formatstyle, and API naming to swift-api-design-guidelines."
Swift Language Patterns
Core Swift language features and modern syntax patterns targeting Swift 6.3. For helper modernization, preserve behavior and evaluation order while preferring guard preconditions, typed throws for one local error enum, count(where:), and direct if/switch expression returns. Covers language constructs, type system features, basic Codable,
string and collection APIs, basic formatting, C interop (@c), module disambiguation (ModuleName::symbol), and performance attributes (@specialized, @inline(always)). For @c corrections, call UnsafeBufferPointer a Swift struct/value wrapper and enumerate invalid Swift-only signature types: String, Array, closures, generic placeholders. Route deeper Codable/API decoding to swift-codable, detailed formatting/localization to swift-formatstyle, API naming to swift-api-design-guidelines, concurrency to swift-concurrency, and SwiftUI state/view work to swiftui-patterns.
Contents
- If/Switch Expressions
- Typed Throws
- Result Builders
- Property Wrappers
- Opaque and Existential Types
- Guard Patterns
- Never Type
- Regex Builders
- Codable Best Practices
- Modern Collection APIs
- FormatStyle
- String Interpolation
- Common Mistakes
- Review Checklist
- References
If/Switch Expressions
Swift 5.9+ allows if and switch as expressions that return values. Use them
to assign, return, or initialize directly.
// Assign from if expression
let icon = if isComplete { "checkmark.circle.fill" } else { "circle" }
// Assign from switch expression
let label = switch status {
case .draft: "Draft"
case .published: "Published"
case .archived: "Archived"
}
// Works in return position
func badgeText(for priority: Priority) -> String {
switch priority {
case .high: "High"
case .medium: "Medium"
case .low: "Low"
}
}
Rules:
- Every branch must produce a value of the same type.
- Multi-statement branches are not allowed -- each branch is a single expression.
- Wrap in parentheses when used as a function argument to avoid ambiguity.
Typed Throws
Swift 6+ allows specifying the error type a function throws.
enum ValidationError: Error {
case tooShort, invalidCharacters, alreadyTaken
}
func validate(username: String) throws(ValidationError) -> String {
guard username.count >= 3 else { throw .tooShort }
guard username.allSatisfy(\.isLetterOrDigit) else { throw .invalidCharacters }
return username.lowercased()
}
// Caller gets typed error -- no cast needed
do {
let name = try validate(username: input)
} catch {
// error is ValidationError, not any Error
switch error {
case .tooShort: print("Too short")
case .invalidCharacters: print("Invalid characters")
case .alreadyTaken: print("Taken")
}
}
Rules:
- Use
throws(SomeError)only when callers benefit from exhaustive error handling. For mixed error sources, use untypedthrows. - When modernizing a helper with one local error enum, prefer
throws(ErrorEnum)and note Swift 6+. throws(Never)marks a function that syntactically throws but never actually does -- useful in generic contexts.- Typed throws propagate: a function calling
throws(A)andthrows(B)must itself throw a type that covers both (or use untypedthrows).
Result Builders
@resultBuilder enables DSL-style syntax. SwiftUI's @ViewBuilder is the most
common example, but you can create custom builders for any domain.
@resultBuilder
struct ArrayBuilder<Element> {
static func buildBlock(_ components: [Element]...) -> [Element] {
components.flatMap { $0 }
}
static func buildExpression(_ expression: Element) -> [Element] { [expression] }
static func buildOptional(_ component: [Element]?) -> [Element] { component ?? [] }
static func buildEither(first component: [Element]) -> [Element] { component }
static func buildEither(second component: [Element]) -> [Element] { component }
static func buildArray(_ components: [[Element]]) -> [Element] { components.flatMap { $0 } }
}
func makeItems(@ArrayBuilder<String> content: () -> [String]) -> [String] { content() }
let items = makeItems {
"Always included"
if showExtra { "Conditional" }
for name in names { name.uppercased() }
}
Builder methods: buildBlock (combine statements), buildExpression (single value), buildOptional (if without else), buildEither (if/else), buildArray (for..in), buildFinalResult (optional post-processing).
Property Wrappers
Custom @propertyWrapper types encapsulate storage and access patterns.
@propertyWrapper
struct Clamped<Value: Comparable> {
private var value: Value
let range: ClosedRange<Value>
var wrappedValue: Value {
get { value }
set { value = min(max(newValue, range.lowerBound), range.upperBound) }
}
var projectedValue: ClosedRange<Value> { range }
init(wrappedValue: Value, _ range: ClosedRange<Value>) {
self.range = range
self.value = min(max(wrappedValue, range.lowerBound), range.upperBound)
}
}
// Usage
struct Volume {
@Clamped(0...100) var level: Int = 50
}
var v = Volume()
v.level = 150 // clamped to 100
print(v.$level) // projected value: 0...100
Design rules:
wrappedValueis the primary getter/setter.projectedValue(accessed via$property) provides metadata or bindings.- Property wrappers can be composed:
@A @B var xapplies outer wrapper first. - Do not use property wrappers when a simple computed property suffices.
Opaque and Existential Types
some Protocol (Opaque Type)
The caller does not know the concrete type, but the compiler does. A -> some P
return has one fixed underlying concrete type across all return branches.
func makeCollection() -> some Collection<Int> {
[1, 2, 3] // Always returns Array<Int> -- compiler knows the concrete type
}
Use some for:
- Return types when you want to hide implementation but preserve type identity.
- Parameter types (Swift 5.7+):
some Pis shorthand for an unnamed generic parameter such as<T: P>.
any Protocol (Existential Type)
An existential box that can hold any conforming type at runtime. It uses dynamic dispatch and may allocate when the value does not fit in the inline buffer.
func process(items: [any StringProtocol]) {
for item in items {
print(item.uppercased())
}
}
When to choose
Use some | Use any |
|---|---|
| Return type hiding concrete type | Heterogeneous collections |
| Function parameters (replaces simple generics) | Dynamic type erasure needed |
| Better performance (static dispatch) | Protocol has Self or associated type requirements you need to erase |
Rule of thumb: Default to some. Use any only when you need a
heterogeneous collection or runtime type flexibility.
Guard Patterns
guard enforces preconditions and enables early exit. It keeps the happy path
left-aligned and reduces nesting.
func processOrder(_ order: Order?) throws -> Receipt {
// Unwrap optionals
guard let order else { throw OrderError.missing }
// Validate conditions
guard order.items.isEmpty == false else { throw OrderError.empty }
guard order.total > 0 else { throw OrderError.invalidTotal }
// Boolean checks
guard order.isPaid else { throw OrderError.unpaid }
// Pattern matching
guard case .confirmed(let date) = order.status else {
throw OrderError.notConfirmed
}
return Receipt(order: order, confirmedAt: date)
}
Best practices:
- Use
guardfor preconditions,iffor branching logic. - Combine related guards:
guard let a, let b else { return }. - The
elseblock must exit scope:return,throw,continue,break, orfatalError(). - Use shorthand unwrap:
guard let value else { ... }(Swift 5.7+).
Never Type
Never is an uninhabited type for code paths that never produce a value. It
behaves like Swift's bottom type only where a value expression can be used or
inferred; it is not a universal type witness, does not implicitly conform to
arbitrary protocols, and cannot satisfy generic constraints such as T: P
unless the constraint is otherwise valid for Never.
// Function that terminates the program
func crashWithDiagnostics(_ message: String) -> Never {
let diagnostics = gatherDiagnostics()
logger.critical("\(message): \(diagnostics)")
fatalError(message)
}
enum Result<Success, Failure: Error> {
case success(Success)
case failure(Failure)
}
// Result<String, Never> -- a result that can never fail
// Exhaustive switch: no default needed since Never has no cases
func handle(_ result: Result<String, Never>) {
switch result {
case .success(let value): print(value)
// No .failure case needed -- compiler knows it's impossible
}
}
Regex Builders
Swift 5.7+ Regex builder DSL provides compile-time checked, readable patterns.
import Foundation
import RegexBuilder
// Parse "2024-03-15" into components
let dateRegex = Regex {
Capture { /\d{4}/ }; "-"; Capture { /\d{2}/ }; "-"; Capture { /\d{2}/ }
}
if let match = "2024-03-15".firstMatch(of: dateRegex) {
let (_, year, month, day) = match.output
_ = (year, month, day)
}
// TryCapture with transform
let priceRegex = Regex {
"$"
TryCapture { OneOrMore(.digit); "."; Repeat(.digit, count: 2) }
transform: { Decimal(string: String($0)) }
}
When to use builder vs. literal:
- Builder: complex patterns, reusable components, strong typing on captures.
- Literal (
/pattern/): simple patterns, familiarity with regex syntax. - Both can be mixed: embed
/.../literals inside builder blocks.
Codable Best Practices
Custom CodingKeys
Rename keys without writing a custom decoder:
struct User: Codable {
let id: Int
let displayName: String
let avatarURL: URL
enum CodingKeys: String, CodingKey {
case id
case displayName = "display_name"
case avatarURL = "avatar_url"
}
}
Custom Decoding
Handle mismatched types, defaults, and transformations:
struct Item: Decodable {
let name: String
let quantity: Int
let isActive: Bool
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
name = try container.decode(String.self, forKey: .name)
quantity = try container.decodeIfPresent(Int.self, forKey: .quantity) ?? 0
if let boolValue = try? container.decode(Bool.self, forKey: .isActive) {
isActive = boolValue
} else {
isActive = (try container.decode(String.self, forKey: .isActive)).lowercased() == "true"
}
}
enum CodingKeys: String, CodingKey { case name, quantity; case isActive = "is_active" }
}
Nested Containers
Flatten nested JSON into a flat Swift struct:
// JSON: { "id": 1, "metadata": { "created_at": "...", "tags": [...] } }
struct Record: Decodable {
let id: Int
let createdAt: String
let tags: [String]
enum CodingKeys: String, CodingKey {
case id, metadata
}
enum MetadataKeys: String, CodingKey {
case createdAt = "created_at"
case tags
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
id = try container.decode(Int.self, forKey: .id)
let metadata = try container.nestedContainer(
keyedBy: MetadataKeys.self, forKey: .metadata)
createdAt = try metadata.decode(String.self, forKey: .createdAt)
tags = try metadata.decode([String].self, forKey: .tags)
}
}
See references/swift-patterns-extended.md for additional Codable patterns (enums with associated values, date strategies, unkeyed containers).
Modern Collection APIs
Prefer these modern APIs over manual loops:
let numbers = [1, 2, 3, 4, 5, 6, 7, 8]
// count(where:) -- use instead of .filter { }.count
let evenCount = numbers.count(where: { $0.isMultiple(of: 2) })
// contains(where:) -- short-circuits on first match
let hasNegative = numbers.contains(where: { $0 < 0 })
// first(where:) / last(where:)
let firstEven = numbers.first(where: { $0.isMultiple(of: 2) })
// String replacing() -- Swift 5.7+, returns new string
let cleaned = rawText.replacing(/\s+/, with: " ")
let snakeCase = name.replacing("_", with: " ")
// compactMap -- unwrap optionals from a transform
let ids = strings.compactMap { Int($0) }
// flatMap -- flatten nested collections
let allTags = articles.flatMap(\.tags)
// Dictionary(grouping:by:)
let byCategory = Dictionary(grouping: items, by: \.category)
// reduce(into:) -- efficient accumulation
let freq = words.reduce(into: [:]) { counts, word in
counts[word, default: 0] += 1
}
FormatStyle
Use .formatted() instead of DateFormatter/NumberFormatter. It is
type-safe, localized, and concise.
// Dates
let now = Date.now
now.formatted() // "3/15/2024, 2:30 PM"
now.formatted(date: .abbreviated, time: .shortened) // "Mar 15, 2024, 2:30 PM"
now.formatted(.dateTime.year().month().day()) // "Mar 15, 2024"
now.formatted(.relative(presentation: .named)) // "yesterday"
// Numbers
let price = 42.5
price.formatted(.currency(code: "USD")) // "$42.50"
price.formatted(.percent) // "4,250%"
(1_000_000).formatted(.number.notation(.compactName)) // "1M"
// Measurements
let distance = Measurement(value: 5, unit: UnitLength.kilometers)
distance.formatted(.measurement(width: .abbreviated)) // "5 km"
// Duration (Swift 5.7+)
let duration = Duration.seconds(3661)
duration.formatted(.time(pattern: .hourMinuteSecond)) // "1:01:01"
// Byte counts
Int64(1_500_000).formatted(.byteCount(style: .file)) // "1.5 MB"
// Lists
["Alice", "Bob", "Carol"].formatted(.list(type: .and)) // "Alice, Bob, and Carol"
Parsing: FormatStyle also supports parsing:
let value = try Decimal("$42.50", format: .currency(code: "USD"))
let date = try Date("Mar 15, 2024", strategy: .dateTime.month().day().year())
String Interpolation
Extend DefaultStringInterpolation for domain-specific formatting. Use """ for multi-line strings (indentation is relative to the closing """). See references/swift-patterns-extended.md for custom interpolation examples.
Common Mistakes
- Using
anywhensomeworks. Default tosomefor return types and parameters, but every-> some Pbranch must return the same concrete type. - Manual loops or
.filter { }.countinstead of collection APIs. Usecount(where:)for conditional counts, pluscontains(where:),compactMap, andflatMapinstead of extra iteration or arrays. DateFormatterinstead of FormatStyle..formatted()is simpler, type-safe, and handles localization automatically.- Force-unwrapping Codable decodes. Use
decodeIfPresentwith defaults for optional or missing keys. - Reordering preconditions during modernization. Use
guardwithout moving normalization or transformations before validation. - Invalid
@csignatures. SayUnsafeBufferPointeris a Swift struct/value wrapper, then rejectString,Array, closures, and generic placeholders. - Ignoring typed throws. When a function has a single, clear error type, typed throws give callers exhaustive switch without casting.
- Overusing property wrappers. A computed property is simpler when there is no reuse or projected value needed.
- Underspecifying
Never. ForResult<T, Never>orthrows(Never), write the caveat explicitly: Never does not implicitly conform to arbitrary protocols, cannot satisfy arbitraryT: Pconstraints, and is bottom-like only in valid expression/inference contexts. - Owning sibling implementation. Name the owner skill and stop. Avoid
snippets for
CodingKeys, decoders, formatters, SwiftUI, or concurrency.
Review Checklist
-
someused only when every opaque-return branch has one concrete type -
guardfor preconditions;count(where:)instead of manual counting or.filter { }.count -
.formatted()used instead ofDateFormatter/NumberFormatter - Codable types use
CodingKeysfor API mapping;decodeIfPresentwith defaults for optional fields - if/switch expressions for conditional assignment; property wrappers have clear reuse justification
- Regex builder used for complex patterns (literal OK for simple ones)
- Typed throws used for single local error domains, with Swift 6+ compatibility noted
-
@ccorrections callUnsafeBufferPointera Swift struct/value wrapper and enumerate rejected Swift-only types by name -
Neverguidance uses uninhabited and bottom-like, and says no implicit arbitrary protocol/generic conformance - deep Codable to
swift-codable; FormatStyle APIs toswift-formatstyle; market/localized-display QA toios-localization; naming/concurrency/SwiftUI routed to sibling skills
References
- Extended patterns and Codable examples: references/swift-patterns-extended.md
- Attributes and C interop: references/swift-attributes-interop.md
Related skills
More from dpearson2699/swift-ios-skills and the wider catalog.

swift-security
Use when working with iOS/macOS Keychain Services (SecItem queries, kSecClass, OSStatus errors), biometric authentication (LAContext, Face ID, Touch ID), CryptoKit (AES-GCM, ChaChaPoly, ECDSA, ECDH, HPKE, ML-KEM), Secure Enclave, secure credential storage (OAuth tokens, API keys), certificate pinning (SecTrust, SPKI), keychain sharing across apps/extensions, migrating secrets from UserDefaults or plists, or OWASP MASVS/MASTG mobile compliance on Apple platforms.

swift-testing
Modern Swift testing framework with @Test, traits, and parallel execution for Xcode 16+.

swiftdata
Implement and manage data persistence in iOS 18+ apps using SwiftData with @Model, @Query, and CloudKit sync.

swiftlint
Configures and enforces SwiftLint in Swift projects using build tool plugins, run scripts, and CI. Covers .swiftlint.yml configuration, disabled_rules, opt_in_rules, only_rules, analyzer_rules, baselines, autocorrect, swiftlint:disable suppressions, reporter formats (sarif, json, checkstyle), strict and lenient modes, SwiftLintBuildToolPlugin via SimplyDanny/SwiftLintPlugins, swift package plugin swiftlint, Xcode run script phases, CI integration, multiple configuration files, and rollout strategies for existing codebases. Use when setting up SwiftLint, configuring lint rules, suppressing warnings, creating baselines, choosing between build tool plugin and run script, or integrating SwiftLint into CI.

swiftui-animation
Implement and review SwiftUI animations, transitions, and SF Symbol effects with modern iOS 17+ APIs.

swiftui-gestures
Implement and compose SwiftUI gestures with modern APIs, state management, and conflict resolution.