func resetBytes <R>(in: R)
Replaces the contents of the data buffer with zeros for the provided range.
データバッファの内容をこの与えられた範囲に対してゼロで置き換えます。
Availability 有効性
Technology
mutating func resetBytes<R>(in range: R) where R : RangeExpression
, Self.Index
== R.Bound
range
The range of bytes to replace with zeros. この範囲のバイトをゼロで置き換えることになります。
The following example sets the bytes to zero for the bytes identified by the provided range: 以下の例は、バイトをゼロに設定することを、提供された範囲によって識別されるバイトに対して行います:
func resetBytes <R>(in: R)