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

advanced(by:)

Returns a new data buffer created by removing the given number of bytes from the front of the original buffer. 与えられたバイト数を元のバッファの先頭から取り除くことによって作成される新しいデータバッファを返します。

Declaration 宣言

func advanced(by amount: Int) -> Data

Parameters パラメータ

amount

The number of bytes to strip from the input data buffer. The value must be less than the original data buffer's length. 入力データバッファから剝ぎ取るバイト数。この値は、元のデータバッファの持つ長さより少なくなければなりません。

Return Value 戻り値

A newly created data buffer that is shorter by the given amount than the original. 新しく作成されたデータバッファ、それは与えられたamountの分だけオリジナルより少ないです。

See Also 参照

Excluding Bytes バイトを排除する