init(memberStyle : Style)
Overview 概要
A list format style creates human readable text from a Sequence
of values. Customize the formatting behavior of the list using the width
, list
, and locale
properties. The system automatically caches unique configurations of List
to enhance performance.
あるリスト書式設定スタイルは、人に読みやすいテキストを値いくつかからなるあるSequence
から作成します。リストの書式設定挙動をwidth
、list
、そしてlocale
プロパティを使ってカスタマイズしてください。システムは、自動的にList
の固有な構成設定それらをキャッシュすることで性能を高めます。
Use either formatted()
or formatted(_:)
, both instance methods of Sequence
, to create a string representation of the items.
formatted()
またはformatted(_:)
のどちらか、両方ともSequence
のインスタンスメソッド、を使うことで項目それらからなるある文字列表現を作成してください。
The formatted()
method applies the default list format style to a sequence of strings. For example:
formatted()
メソッドは、省略時のリスト書式設定スタイルを文字列いくつかからなるあるシーケンスに適用します。例えば:
You can customize a list’s type
and width
properties.
あなたは、あるリストのもつtype
and width
プロパティをカスタマイズできます。
The
list
property specifies the semantics of the list.Type list
プロパティは、そのリストの意味論を指定します。Type The
width
property determines the size of the returned string.width
プロパティは、返される文字列のサイズを決定します。
The formatted(_:)
method to applies a custom list format style. You can use the static factory method list(type:
to create a custom list format style as a parameter to the method.
formatted(_:)
メソッドは、あるあつらえのリスト書式設定スタイルを適用します。あなたは、静的ファクトリメソッドlist(type:
を使って、あつらえのリスト書式設定スタイルをメソッドへのパラメータとして作成できます。
This example formats a sequence with a List
list type and List
width:
この例は、あるシーケンスをList
リスト型とList
幅で書式設定します:
You can provide a member format style to transform each list element to a string in applications where the elements aren’t already strings. For example, the following code sample uses an Integer
to convert a range of integer values into a list:
あなたは、メンバー書式設定スタイルを提供することで、各リスト要素を文字列へとアプリケーションにおいて変形できます、そこで要素それらはまだ文字列ではありません。例えば、以下のコード例は、Integer
を使ってある範囲の整数値をリストへと変換します:
Note 注意
The generated string is locale-dependent and incorporates linguistic and cultural conventions of the user. 生成された文字列は、ロケール依存です、そしてユーザの言語的および文化的な慣例を組み入れます。
You can create and reuse a list format style instance to format similar sequences. For example: あなたは、あるリスト書式設定スタイルインスタンスを作成および再利用して、同様なシーケンスを書式設定できます。例えば: