A closure with a pointer parameter that points to a null-terminated sequence of code units. If body
has a return value, that value is also used as the return value for the with
method. The pointer argument is valid only for the duration of the method’s execution.
コード単位からなるnull終端シーケンスを指し示すポインタパラメータを持つクロージャ。body
が戻り値を持つならば、その値はまたwith
メソッドの戻り値としても使われます。ポインタ引数は、ただメソッドの実行の間に対してのみ有効です。
Generic Instance Method
総称体インスタンスメソッド
with
withCString(encodedAs:_:)
Calls the given closure with a pointer to the contents of the string, represented as a null-terminated sequence of code units.
null終端のコード単位シーケンスとして表される、文字列の内容へのポインタとともに与えられたクロージャを呼び出します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func withCString<Result, Encoding>(encodedAs targetEncoding: Encoding.Type, _ body: (UnsafePointer
<Encoding.CodeUnit >) throws -> Result) rethrows -> Result where Encoding : _UnicodeEncoding
Parameters パラメータ
body
CString(encoded As: _:) CString(encoded As: _:) targetEncoding
The encoding in which the code units should be interpreted. それでコード単位が解釈されるべきエンコーディング。
Return Value 戻り値
The return value, if any, of the body
closure parameter.
body
クロージャパラメータの戻り値、もしあれば。
Discussion 解説
The pointer passed as an argument to body
is valid only during the execution of with
. Do not store or return the pointer for later use.
引数としてbody
に渡されるポインタは、with
の実行の間のみ有効です。後で使うためにポインタを格納したり返したりしないでください。