Initializer

init(_:)

Creates a new Boolean value from the given string. 与えられた文字列から新しいブール値を作成します。

Declaration 宣言

init?(_ description: String)

Parameters パラメータ

description

A string representation of the Boolean value. ブール値の文字列表現。

Discussion 解説

If the description value is any string other than "true" or "false", the result is nil. This initializer is case sensitive. このdescription値が"true"または"false"と違う何らかの文字列ならば、結果はnilです。このイニシャライザは、大文字小文字を区別します。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Creating a Boolean From Another Value 別の値からあるブールを作成する