Initializer

init(_:)

Creates a String having the given content. 与えられた内容を持っているあるStringを作成します。

Declaration 宣言

init?(_ codeUnits: Substring.UTF8View)

Discussion 解説

If codeUnits is an ill-formed code unit sequence, the result is nil. codeUnitsが文法的に正しくないコード単位シーケンスを含むならば、結果はnilです。

Complexity: O(N), where N is the length of the resulting String’s UTF-16. 計算量:O(N)、ここでNは結果となるStringの持つUTF-16の長さです。

See Also 参照

Working with String Views 文字列ビューを扱う