The instance to assign this buffer’s memory to. インスタンス、それにこのバッファのもつメモリをアサインします。
Instance Method
インスタンスメソッド
assign(repeating:)
Assigns 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 assign(repeating repeatedValue: Element)
Parameters パラメータ
repeatedValue
Discussion 解説
The buffer’s memory must be initialized or the buffer’s Element
must be a trivial type.
バッファのもつメモリは初期化されなければなりません、またバッファのもつElement
は自明型でなければなりません。
Warning: All buffer elements must be initialized before calling this. Assigning to part of the buffer must be done using the assign(repeating:
method on the buffer’s base
.
警告:全てのバッファ要素はこれを呼び出す前に初期化されなければなりません。バッファの一部に対するアサインは、assign(repeating:
メソッドをバッファのもつbase
上で使って終わっていなければなりません。