create_bool_feature_flag {featureflag}R Documentation

Creates an instance of a bool feature flag with the specified bool value.

Description

Creates an instance of a bool feature flag with the specified bool value.

Usage

create_bool_feature_flag(value)

Arguments

value

single logical determining whether the flag should be enabled

Value

feature flag object of the bool value

Examples

{
  enabled_flag <- create_bool_feature_flag(TRUE)
  disabled_flag <- create_bool_feature_flag(FALSE)
}

[Package featureflag version 0.1.0 Index]