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

getCharacters(_:)

Copies all characters from the receiver into a given buffer. 全ての文字をレシーバからある与えられたバッファにコピーします。

Declaration 宣言

func getCharacters(_ buffer: UnsafeMutablePointer<unichar>)

Parameters パラメータ

buffer

Upon return, contains the characters from the receiver. buffer must be large enough to contain all characters in the string ([string length]*sizeof(unichar)). 戻りでは、レシーバからの文字を含みます。bufferは、文字列の中のすべての文字を含むのに十分に大きくなければいけません([string length]*sizeof(unichar))。

Discussion 議論

Invokes getCharacters(_:range:) with buffer and the entire extent of the receiver as the range. getCharacters(_:range:)bufferを使ってそしてレシーバの全域を範囲として発動します。

See Also 参照

Deprecated 非推奨

Related Documentation 関連文書