Skip to content

Instantly share code, notes, and snippets.

@lookashc
Last active December 21, 2020 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lookashc/a5f8baa7c2fa105c66442603ae58c09a to your computer and use it in GitHub Desktop.
Save lookashc/a5f8baa7c2fa105c66442603ae58c09a to your computer and use it in GitHub Desktop.
medium-feature-toggles-gist1
interface Feature<T : Any> {
val initialValue: T
val name: String
fun validate(newValue: T): Boolean = true
fun type(): KClass<out T> = initialValue::class
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment