// Source code
let swiftLeeBlogURL = #URL("https://www.avanderlee.com")
// Expanded source
let swiftLeeBlogURL = {
guard let swiftLeeBlogURL = URL(string: "https://www.avanderlee.com") else {
/// Throw compiler error
}
return swiftLeeBlogURL
}()
#
로 정의되는 freestanding @
로 정의되는 attachedlet x = #stringfy(42) // returns "42"
처럼 표현식처럼 사용하거나#log("some logging") // print("some logging")
로 함수처럼 사용할 수 있다.특정 프로퍼티만 custom coding key를 사용할 수 있음
// Source code
@Codable
struct Landmark {
@CodablePath("title")
var name: String
@CodablePath("founding_date")
var foundingYear: Int
var location: Coordinate
var vantagePoints: [Coordinate]
}
// Expanded source
struct Landmark: Codable {
var name: String
var foundingYear: Int
var location: Coordinate
var vantagePoints: [Coordinate]
enum CodingKeys: String, CodingKey {
case name = "title"
case foundingYear = "founding_date"
case location
case vantagePoints
}
}
decoding 실패할 경우(key가 없거나, type이 mismatch)의 default value 지정
@Codable
struct CodableData {
@CodablePath(default: "some")
let field: String
}
nested coding key value를 사용해서 flatten 가능
// JSON to decode
{
"latitude": 0,
"longitude": 0,
"additionalInfo": {
"elevation": 0
}
}
// Source code
@Codable
struct Coordinate {
var latitude: Double
var longitude: Double
@CodablePath("additionalInfo", "elevation")
var elevation: Double
}
@Pick("Picked", properties: "id", "name")
public struct User {
let id: UUID
let name: String
let age: Int
let optional: Void?
}
// Pick is picked properties from User.
let pickedUser = User.Picked(id: UUID(), name: "bannzai")
// OR
let user = User(id: UUID(), name: "bannzai", age: 30, optional: ())
let pickedUser = User.Picked(user: user)
@Extract("ExtractedOne", extracts: "one")
public enum Enum {
case one
case two(Int)
case three(String, Int)
case four(a: String, b: Int)
}
let testEnum2 = Enum.one
let extracted = Enum.ExtractedOne(testEnum2)
// The switch statement only `one`.
switch extracted {
case .one:
print("one")
case nil:
print("nil")
}
// Parameters
@Parameters("FunctionArgs")
func function(a: Int, b: String, c: @escaping () -> Void, e: () -> Void) -> Int {
return 1
}
let args: FunctionArgs = (a: 10, b: "value", c: { print("c") }, e: { print("e") })
// ReturnType
@ReturnType("FunctionReturnType")
func function(a: Int, b: String, c: @escaping () -> Void, e: () -> Void) -> Int {
return 1
}
let returnType = FunctionReturnType(rawValue: 100)