DoubleFeatureFlag

abstract class DoubleFeatureFlag(val key: String, val default: Double) : FeatureFlag<Double>

A simple Double feature flag.

Constructors

Link copied to clipboard
constructor(key: String, default: Double)

Properties

Link copied to clipboard
open override val default: Double

The default option to be assumed when no backing value is present.

Link copied to clipboard
open override val key: String

The value that's used to extract this feature flag value in the underlying storage mechanism.