Login
Discover
Waves
Decks
Plus
Login
Signup
kwakbab
@kwakbab
25
Followers
1
Following
0
Resource Credits
Available
Used
Created
January 29, 2018
RSS Feed
Subscribe
Blog
Blog
Posts
Comments
Communities
Wallet
kwakbab
swift
2018-02-01 02:49
Enum with String and Int
enum Group: String { case Me case You case Her case Him init?(index: Int) { switch index { case 0: self = .Me case 1: self = .You case 2: self = .Her case 3: self = .Him default: return nil } } }
$ 0.000
1
2