Initializer

init(memberStyle:)

Creates an instance using the provided format style. あるインスタンスをこの提供された書式設定スタイルを使って作成します。

Declaration 宣言

init(memberStyle: Style)

Parameters パラメータ

memberStyle

The FormatStyle applied to elements of the Sequence. Sequenceの要素それらに適用されるFormatStyle

Discussion 議論

The input type of memberStyle must match the type of an element in the sequence. The output type is a string. memberStyleの入力型は、シーケンスの中のある要素の型に合致しなければなりません。出力型は、ある文字列です。

The following example uses a FloatingPointFormatStyle.Descriptive member style to spell out a list: 以下の例は、FloatingPointFormatStyle.Descriptiveメンバースタイルを使ってあるリストを完全に綴ります。


[-3.0, 9.0, 11.6].formatted(.list(memberStyle: .descriptive, type: .and))
// minus three, nine, and eleven point six