The value of the new instance. 新しいインスタンスのための値。
Initializerinit(boolean
init(booleanLiteral:)
Creates an instance initialized to the given Boolean value.
与えられたブール値に初期化されるインスタンスを作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init(booleanLiteral value: Self.BooleanLiteralType
)
Parameters パラメータ
value
Discussion 解説
Do not call this initializer directly. Instead, initialize a variable or constant using one of the Boolean literals true
and false
. For example:
このイニシャライザを直接に呼ばないでください。代わりに、変数や定数をブールリテラルtrue
とfalse
のうちの1つを使って初期化してください。例えば:
In this example, the assignment to the twas
constant calls this Boolean literal initializer behind the scenes.
この例において、twas
定数への代入は、このブールリテラルイニシャライザを舞台裏で呼びます。