Last active
January 3, 2024 06:01
-
-
Save khramtsoff/ad84ba1b8a2e927c7b19aed5c36d5750 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
extension CustomStringConvertible { | |
var description: String { | |
var description: String = "\(type(of: self))(" | |
let selfMirror = Mirror(reflecting: self) | |
for child in selfMirror.children { | |
if let propertyName = child.label { | |
description += "\(propertyName): \(child.value), " | |
} | |
} | |
description += "<\(Unmanaged.passUnretained(self as AnyObject).toOpaque())>)" | |
return description | |
} | |
} | |
class Person: CustomStringConvertible { | |
let name: String | |
let age: Int | |
init (name: String, age: Int) { | |
self.name = name | |
self.age = age | |
} | |
} | |
let alex = Person(name: "Alex", age: 20) | |
print(alex) // Person(name: Alex, age: 20, <0x000060c000058d20>) |
+1 👍🏻
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the gist.