Learn R Programming

featureflag (version 0.2.0)

create_bool_feature_flag: 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)

Value

feature flag object of the bool value

Arguments

value

single logical determining whether the flag should be enabled

Examples

Run this code
{
  enabled_flag <- create_bool_feature_flag(TRUE)
  disabled_flag <- create_bool_feature_flag(FALSE)
}

Run the code above in your browser using DataLab