1편
전체 글
Swift 제네릭에 대해 정리한 개발 블로그 글입니다. func swap<T>(_ a: inout T, _ b: inout T) { let temp = a a = b b = temp }