func formatted() -> String
Element
is String
.
Element
がString
である時に利用可能です。
struct ListFormatStyle
Availability
Technology
func formatted<S>(_ style: S) -> S.FormatOutput
where Self == S.FormatInput
, S : FormatStyle
style
The list format style. リスト書式形式。
A string, formatted according to the provided style. ある文字列、提供された形式により書式設定されます。
Use the formatted(_:)
method to apply a custom list format style. You can use one of the List
static factory methods to create a custom list format style as a parameter to the method.
formatted(_:)
メソッドを使ってあつらえのリスト書式形式を適用しください。あなたは、List
静的ファクトリメソッドの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: 以下の例は、ユーザに読みやすいリストを整数いくつかからなるある配列から項目形式書式、リスト幅、そしてリスト型を提供することによって作成します:
For more information about list format styles, see List
.
リスト書式形式についてのさらなる情報として、List
を見てください。
func formatted() -> String
Element
is String
.
Element
がString
である時に利用可能です。
struct ListFormatStyle