Swift 协议详解 protocol OutputStreamType `文本输出流`{ mutating func write(_ string: String)}protocol Streamable `可以被输出`{ func writeTo<Target : OutputStreamType>(inout _ target: Target)}struc
Swift 标准库文档 结构体AnyBidirectionalCollection A type-erased wrapper over any collection with indices that support bidirectional traversal.AnyBidirectionalIndex A wrapper over an underlying BidirectionalIndexType t
Swift 原始指针 UnsafePointer 常量, 原始指针 (C表达法 Type const*) UnsafePointer 原始指针 (C表达法 Type *) UnsafeMutablePointerinit() 空参数init(COpaquePointer) 不确定类型init(UnsafeMutablePointer<>) 原始指针init