Instance Method インスタンスメソッド

format(_:)

Creates a locale-aware string representation of the value. この値のロケール対応文字列表現を作成します。

Declaration 宣言

func format(_ value: Base) -> String

Parameters パラメータ

value

The sequence of elements to format. 書式設定することになる要素いくつかからなるシーケンス。

Return Value 戻り値

A string representation of the provided sequence. 提供されたシーケンスの文字列表現。

Discussion 議論

The format(_:) instance method generates a string from the provided sequence. Once you create a style, you can use it to format similar sequences multiple times. For example: format(_:)インスタンスメソッドは、ある文字列をその提供されたシーケンスから生成します。一旦あなたがあるスタイルを作成するならば、あなたはそれを使って同様のシーケンスを複数回書式設定できます。例えば:


let percentStyle = ListFormatStyle<IntegerFormatStyle.Percent, [Int]>(memberStyle: .percent)
percentStyle.format([92, 98]) // 92% and 98%
percentStyle.format([67, 72, 99]) // 67%, 72%, and 99%

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

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