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

View source: R/feature_flag-bool.R

create_bool_feature_flagR 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)
}

featureflag documentation built on April 4, 2025, 5:45 a.m.