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

szymanskir/featureflag documentation built on June 9, 2025, 4:45 p.m.