Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

swift-optionals-patternsSwift optionals 模式

Agent Skill

swift-optionals-patterns 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,073

周安装

205

GitHub Stars

142

下载量

2,144
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:swift-optionals-patterns(Swift optionals 模式)
来源仓库:https://github.com/thebushidocollective/han
仓库路径:skills/swift-optionals-patterns
安装命令:
npx skills add https://github.com/thebushidocollective/han --skill 'Swift Optionals Patterns'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/thebushidocollective/han --skill 'Swift Optionals Patterns'

简介

swift-optionals-patterns 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过命令行调用,支持基于线索的信息聚合与筛选。
  • 安装前需确认权限范围、维护状态及是否触发联网或命令执行。
  • 建议结合来源仓库和原始 README 进一步核验具体用法。

SKILL.md

Swift Optionals Patterns

Introduction

Swift's optional system is a fundamental type safety feature that explicitly handles the presence or absence of values. Unlike languages that use null references, Swift's optionals provide compile-time safety and force developers to consciously handle missing values. Understanding optional patterns is essential for writing safe, idiomatic Swift code that prevents runtime crashes and clearly expresses intent.

This skill covers optional binding, chaining, unwrapping strategies, and modern patterns for working with optionals in SwiftUI, Combine, and async/await contexts.

Optional Fundamentals

Optionals wrap values that might be nil, providing type-safe handling of missing data. Swift requires explicit acknowledgment of optionals, preventing accidental nil dereference crashes.

// Optional declaration and initialization
var username: String? = "alice"
var age: Int? = nil

// Optional binding with if-let
if let name = username {
    print("Hello, \(name)")
} else {
    print("No username provided")
}

// Guard statements for early returns
func processUser(id: String?) {
    guard let userId = id else {
        print("Invalid user ID")
        return
    }

    // userId is unwrapped and available in this scope
    print("Processing user: \(userId)")
}

// Multiple optional bindings
if let name = username, let userAge = age {
    print("\(name) is \(userAge) years old")
}

// Where clauses for additional conditions
if let userAge = age, userAge >= 18 {
    print("User is an adult")
}

Optional binding with if let and guard let is the safest way to unwrap optionals. Guard statements are preferred for validation at function entry, keeping the happy path unindented.

Optional Chaining

Optional chaining allows safe access to properties, methods, and subscripts on optional values. The chain fails gracefully if any link is nil, returning nil for the entire expression.

struct Address {
    var street: String
    var city: String
}

struct Person {
    var name: String
    var address: Address?
}

class Company {
    var ceo: Person?
}

let company = Company()
company.ceo = Person(name: "Alice", address: nil)

// Optional chaining for safe property access
let street = company.ceo?.address?.street
// street is String?, not String

// Chaining with methods
let uppercaseCity = company.ceo?.address?.city.uppercased()

// Chaining with subscripts
struct Team {
    var members: [String]?
}

let team = Team(members: ["Alice", "Bob"])
let firstMember = team.members?[0]

// Chaining with function calls
class DataManager {
    func fetchData() -> [String]? {
        return ["data1", "data2"]
    }
}

let manager: DataManager? = DataManager()
let data = manager?.fetchData()?[0]

Optional chaining returns nil if any part of the chain fails, making it safe for deeply nested optional access without multiple unwrapping steps.

Nil Coalescing and Default Values

The nil coalescing operator provides default values for nil optionals, enabling concise fallback logic without explicit conditionals.

// Basic nil coalescing
let displayName = username ?? "Guest"

// Chaining multiple coalescing operations
let primaryColor = userPreferences?.color ??
                   systemDefaults.color ??
                   "blue"

// Nil coalescing with optional chaining
let city = company.ceo?.address?.city ?? "Unknown"

// Using with dictionaries
let config: [String: String] = ["theme": "dark"]
let theme = config["theme"] ?? "light"

// Default values in function parameters
func greet(name: String? = nil) {
    let userName = name ?? "there"
    print("Hello, \(userName)!")
}

// Lazy defaults with autoclosure
func getDefault() -> String {
    print("Computing default")
    return "default"
}

let value = username ?? getDefault()
// getDefault() only called if username is nil

// Custom nil coalescing for optionals
infix operator ???: NilCoalescingPrecedence

func ???<T>(optional: T?, defaultValue: @autoclosure () -> T?) -> T? {
    return optional ?? defaultValue()
}

let result = primaryValue ??? secondaryValue ??? tertiaryValue

Nil coalescing is more readable than ternary operators or if-else chains for simple default value scenarios.

Optional Map and FlatMap

Functional operators enable transformation of optional values without explicit unwrapping, supporting clean data pipelines and avoiding nested conditionals.

// Map for transforming wrapped values
let maybeNumber: Int? = 42
let doubled = maybeNumber.map { $0 * 2 }
// doubled is Int? = 84

let nilNumber: Int? = nil
let tripled = nilNumber.map { $0 * 3 }
// tripled is Int? = nil

// Chaining map operations
let uppercaseName = username.map { $0.uppercased() }
                            .map { "Dr. " + $0 }

// FlatMap for avoiding nested optionals
func findUser(id: Int) -> Person? {
    return id == 1 ? Person(name: "Alice", address: nil) : nil
}

let userId: Int? = 1
let user = userId.flatMap(findUser)
// user is Person?, not Person??

// Map vs FlatMap comparison
let stringId: String? = "123"

let mappedInt = stringId.map { Int($0) }
// mappedInt is Int?? (nested optional)

let flatMappedInt = stringId.flatMap { Int($0) }
// flatMappedInt is Int? (flattened)

// Practical example with API responses
struct APIResponse {
    let userId: String?

    func getUser() -> Person? {
        return userId.flatMap { id in
            guard let numericId = Int(id) else { return nil }
            return findUser(id: numericId)
        }
    }
}

// Combining map with nil coalescing
let displayAge = age.map { "\($0) years old" } ?? "Age unknown"

Use map when transforming optionals to optionals, and flatMap when the transformation itself returns an optional.

Implicitly Unwrapped Optionals

Implicitly unwrapped optionals provide automatic unwrapping but should be used sparingly, only when a value is definitely present after initialization.

// Appropriate use: IBOutlets
class ViewController {
    @IBOutlet weak var tableView: UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()
        // tableView is guaranteed to be set by this point
        tableView.delegate = self
    }
}

// Appropriate use: Two-phase initialization
class Service {
    var apiClient: APIClient!

    init() {
        // apiClient set immediately after init
    }

    func configure(with client: APIClient) {
        self.apiClient = client
    }
}

// AVOID: General optional usage
var user: User! // Bad: prefer User?

// Better pattern: lazy initialization
class DataController {
    lazy var cache: Cache = {
        return Cache(configuration: self.config)
    }()

    var config: Configuration

    init(config: Configuration) {
        self.config = config
    }
}

// Forced unwrapping with assertions
func processItem(_ item: Item?) {
    guard let item = item else {
        assertionFailure("Item should never be nil here")
        return
    }

    // Process item
}

// Debug-only forced unwrapping
#if DEBUG
    let debugUser = findUser(id: 1)!
#else
    let debugUser = findUser(id: 1)
#endif

Implicitly unwrapped optionals crash if accessed when nil. Reserve them for framework requirements and guaranteed initialization patterns.

Modern Optional Patterns

Swift evolution has introduced cleaner syntax for common optional patterns, including result builders and async/await integration.

// if-let shorthand (Swift 5.7+)
if let username {
    print("Username: \(username)")
}

guard let username else {
    return
}

// Optional try
func loadData() throws -> Data {
    // Implementation
    return Data()
}

let data = try? loadData()
// data is Data?

// Force try (use carefully)
let guaranteedData = try! loadData()

// Optional async/await
func fetchUser(id: Int) async -> User? {
    // Async implementation
    return nil
}

// Using with await
if let user = await fetchUser(id: 1) {
    print("Fetched: \(user.name)")
}

// Optional in result builders
@resultBuilder
struct OptionalBuilder {
    static func buildBlock(_ components: String?...) -> String? {
        components.compactMap { $0 }.first
    }
}

@OptionalBuilder
func findFirstAvailable() -> String? {
    username
    nil
    "fallback"
}

// SwiftUI optional binding
struct ProfileView: View {
    let user: User?

    var body: some View {
        if let user {
            Text(user.name)
        } else {
            Text("No user")
        }
    }
}

// Combine publisher optionals
import Combine

let publisher = Just<String?>("value")
    .compactMap { $0 }
    .sink { value in
        print("Received: \(value)")
    }

Modern Swift reduces boilerplate while maintaining type safety. Use shorthand syntax where it improves readability.

Best Practices

  1. Prefer optional binding over force unwrapping to prevent runtime crashes and make nil handling explicit and safe
  2. Use guard-let for early returns to keep happy path code unindented and improve readability in validation scenarios
  3. Chain optionals with map/flatMap instead of nested if-let statements for functional transformations and cleaner pipelines
  4. Provide meaningful defaults with nil coalescing to simplify fallback logic and avoid verbose conditional statements
  5. Avoid implicitly unwrapped optionals except for framework requirements like IBOutlets or guaranteed two-phase initialization
  6. Use optional chaining for safe navigation through deeply nested optional properties without intermediate unwrapping
  7. Combine multiple bindings in single if-let to reduce nesting and handle related optionals together with where clauses
  8. Leverage compactMap for collections to filter nil values efficiently when working with arrays of optionals
  9. Document why force unwrapping is safe with assertions or comments when absolutely necessary for debugging or testing
  10. Prefer optional try (try?) over force try to handle errors gracefully and avoid crashes from failed operations

Common Pitfalls

  1. Force unwrapping in production code causes crashes when assumptions about nil are wrong, especially with user input or network data
  2. Nested optional pyramids of doom from multiple if-let statements reduce readability and can often be replaced with optional chaining
  3. Forgetting that optional chaining returns optionals leads to unexpected Optional<Optional<T>> types when not using flatMap
  4. Overusing implicitly unwrapped optionals for convenience introduces crash risks and defeats Swift's type safety benefits
  5. Not handling nil cases explicitly when unwrapping ignores important error states that should be communicated to users
  6. Using force unwrapping with! for debugging then forgetting to replace it with safe unwrapping before shipping code
  7. Comparing optionals with == nil repeatedly instead of using optional binding patterns for more idiomatic Swift
  8. Creating optional of optional (T??) accidentally through incorrect use of map instead of flatMap for transformations
  9. Ignoring optional results from try? without checking if the operation succeeded or providing fallback behavior
  10. Using var for optionals that should be let reduces immutability benefits and can lead to unexpected nil assignments

When to Use This Skill

Use Swift optionals patterns when building any Swift application to ensure type safety and prevent nil-related crashes. This includes iOS, macOS, watchOS, and tvOS development with UIKit, SwiftUI, AppKit, or server-side Swift frameworks.

Apply optional binding and chaining when working with user input, API responses, database queries, or any data source that may return missing values. Use guard statements for validation logic at function boundaries.

Employ map and flatMap when building data transformation pipelines, especially in functional reactive programming with Combine or when processing collections of optional values.

Leverage modern optional syntax in SwiftUI views, async/await code, and result builders to reduce boilerplate while maintaining safety and clarity.

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.03%
按下载量换算558

OpenCode

22.19%
按下载量换算476

Codex

16.99%
按下载量换算364

Antigravity

13.28%
按下载量换算285

windsurf

7.16%
按下载量换算154

Gemini CLI

3.12%
按下载量换算67

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills