Generic Instance Method 総称体インスタンスメソッド

formatted(_:)

Generates a locale-aware string representation of a sequence using the provided list format style. あるシーケンスのロケールを意識した文字列表現をこの提供されたリスト書式形式を使って生成します。

Declaration 宣言

func formatted<S>(_ style: S) -> S.FormatOutput where Self == S.FormatInput, S : FormatStyle

Parameters パラメータ

style

The list format style. リスト書式形式。

Return Value 戻り値

A string, formatted according to the provided style. ある文字列、提供された形式により書式設定されます。

Discussion 解説

Use the formatted(_:) method to apply a custom list format style. You can use one of the ListFormatStyle static factory methods to create a custom list format style as a parameter to the method. formatted(_:)メソッドを使ってあつらえのリスト書式形式を適用しください。あなたは、ListFormatStyle静的ファクトリメソッドの1つを使って、あつらえのリスト書式形式をこのメソッドへのパラメータとして作成できます。

The following example creates a user-readable list from an array of integers by providing a member style format, list width, and list type: 以下の例は、ユーザに読みやすいリストを整数いくつかからなるある配列から項目形式書式、リスト幅、そしてリスト型を提供することによって作成します:


[1, 3, 5, 7].formatted(.list(memberStyle: .descriptive, type: .and, width: .narrow))
// "one, three, five, & seven"

For more information about list format styles, see ListFormatStyle. リスト書式形式についてのさらなる情報として、ListFormatStyleを見てください。

See Also 参照

Formatting a Sequence シーケンスを書式設定する