引数の値をタイプに応じてブール値に変換します。
変換
toBool(<parameter>)
toBool(<decimal>)
toBool(<boolean>)
toBool(<string>)
toBool(<integer>)
ブール値を返します。
toBool("true")
toBool(1)
true を返します。
toBool("this is not a boolean")
false を返します。