Instance Property
インスタンスプロパティ
rawValue
The corresponding value of the raw type.
生の型の対応している値。
Discussion
議論
A new instance initialized with rawValue
will be equivalent to this instance. For example:
rawValue
で初期化された新しいインスタンスは、このインスタンスに相当します。例えば:
enum PaperSize: String {
case A4, A5, Letter, Legal
}
let selectedSize = PaperSize.Letter
print(selectedSize.rawValue)
print(selectedSize == PaperSize(rawValue: selectedSize.rawValue)!)
See Also
参照
Creating an Edge
init(Edge)
Creates an instance containing just e
ただe
だけを含んでいるインスタンスを作成します。
typealias RawValue
The raw type that can be used to represent all values of the conforming type.
準拠している型の全ての値を表すために使われることができる生の型。