はじめに 以前こんな記事を投稿しました UITableviewにCaseiterableとCustomStringConvertibleを使ってみる そこでRawRepresentableに出会ったのですが、RawRepresentableがなんなのかぼんやりとしか知らなかったので調べてみようと思いました。 RawRepresentableとは 定義 For any enumeration with a string, integer, or floating-point raw type, the Swift compiler automatically adds RawRepresentable conformance. RawRepresentableはEnumにString,Int,Floatを実装した場合デフォルトで追加されている。 Swiftのenumで自然に使っている、Hog