This file contains hidden or 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
enum PopTeamEpic: String { | |
case po = "ポ" | |
case p = "プ" | |
case teame = "テピ" | |
case pic = "ピック" | |
} | |
struct 蒼井翔太: Sequence, IteratorProtocol { | |
mutating func next() -> PopTeamEpic? { | |
switch arc4random_uniform(4) { | |
case 0: return .po |