Packages

object Features extends Serializable

Source
Features.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Features
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Flag = compat.Features.Flag

    Encodes a feature flag, stored as a Long.

    Encodes a feature flag, stored as a Long.

    Note that feature flags should be powers of 2, because they'll get added to the set via bitwise arithmetic.

    Example:

    val RED   = Features.flag(1)
    val GREEN = Features.flag(2)
    val BLUE  = Features.flag(4)
    val WHITE = Features.flag(8)

    You can wrap a Long into a Flag via flag.

  2. trait FlagTag extends Any

    Encoding for the newtype we're defining, used to make Flag and Flags type safe (instead of usage of Long), but without the boxing.

    Encoding for the newtype we're defining, used to make Flag and Flags type safe (instead of usage of Long), but without the boxing.

    Inspired by the alexknvl/newtypes project.

  3. type Flags = compat.Features.Flags

    Encodes a set of Flag values.

    Encodes a set of Flag values.

    Internally this is still a Long, but has its own type for type safety reasons.

  4. trait FlagsTag extends Any

    Encoding for the newtype we're defining, used to make Flag and Flags type safe (instead of usage of Long), but without the boxing.

    Encoding for the newtype we're defining, used to make Flag and Flags type safe (instead of usage of Long), but without the boxing.

    Inspired by the alexknvl/newtypes project.

Value Members

  1. def apply(flags: Flag*): Features

    Builds a new Features instance.

    Builds a new Features instance.

    flags

    is a list of feature flags to instantiate the value with.

  2. val empty: Features

    Reusable, empty Features reference.

  3. def flag(value: Long): Flag

    Wraps a Long value into a Flag.