Avatar
返り値が Optional版 や throws 版を作る時、suffixやprefixで表現する時、どうしてます? 最近はこんな感じにやってるんだけど↓ // prefix func mayGetCat() -> Optional<Cat> func mustGetCat() throws -> Cat // suffix func getCatOrNone() -> Optional<Cat> func getCatOrThrow() throws -> Cat