BooleanLaunchEnvironmentValue

public enum BooleanLaunchEnvironmentValue : String, ExpressibleByBooleanLiteral, LaunchEnvironmentValue, Equatable

Represents launch environment value of type Bool.

  • true: true value
  • false: false value
  • Value of true, or 1.

    Declaration

    Swift

    case `true`
  • Value of false, or 0.

    Declaration

    Swift

    case `false`
  • Initializes boolean launch environment with boolean literal type.

    Declaration

    Swift

    public init(booleanLiteral value: BooleanLiteralType)

    Parameters

    value

    Literal to use during initialization.