The sequence of elements to format. 書式設定することになる要素いくつかからなるシーケンス。
Instance Method
インスタンスメソッド
format(_:)
Creates a locale-aware string representation of the value.
この値のロケール対応文字列表現を作成します。
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func format(_ value: Base) -> String
Parameters パラメータ
value
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(_:)
インスタンスメソッドは、ある文字列をその提供されたシーケンスから生成します。一旦あなたがあるスタイルを作成するならば、あなたはそれを使って同様のシーケンスを複数回書式設定できます。例えば:
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Formatting a Sequence シーケンスを書式設定する
static func list<MemberStyle, Base>( memberStyle : MemberStyle, type: ListFormatStyle<MemberStyle, Base>.ListType, width: ListFormatStyle<MemberStyle, Base>.Width) -> ListFormatStyle<MemberStyle, Base>
Creates a list format style using the provided format style and list style.
リスト書式設定スタイルをこの提供された書式設定スタイルとリストスタイルを使って作成します。
static func list<Base>(type: ListFormatStyle<StringStyle, Base>.ListType, width: ListFormatStyle<StringStyle, Base>.Width) -> ListFormatStyle<StringStyle, Base>
Creates a list format style using the provided type and width.
リスト書式設定スタイルをこの提供された型と幅を使って作成します。