Skip to content

Instantly share code, notes, and snippets.

View 1024jp's full-sized avatar
👻
boo

1024jp 1024jp

👻
boo
View GitHub Profile
enum DogCow: Int {
case dog, cow
}
struct Wrapper<Value> {
func newValue(from value: Any?) -> Value? {
return value as? Value ?? Optional<Any>.none as? Value