The instance to initialize this buffer’s memory with. インスタンス、それでこのバッファのもつメモリ初期化します。
Instance Method
インスタンスメソッド
initialize(repeating:)
Initializes every element in this buffer’s memory to a copy of the given value.
このバッファのもつメモリの中の全ての要素を与えられた値のコピーへと初期化します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.3+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func initialize(repeating repeatedValue: Element)
Parameters パラメータ
repeatedValue
Discussion 解説
The destination memory must be uninitialized or the buffer’s Element
must be a trivial type. After a call to initialize(repeating:)
, the entire region of memory referenced by this buffer is initialized.
行き先のメモリは未初期化でなければなりません、またポインタのもつElement
は自明型でなければなりません。initialize(repeating:)
の呼び出しの後、このバッファによって参照されるメモリの全領域は初期化されます。