Packages

case object Default extends Hints with Product with Serializable

Default hints equaling to Hints(16, 32, 48, 80)

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Default
  2. Serializable
  3. Product
  4. Equals
  5. Hints
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. val capacityIncrement: Int

    The size of free space to add to the initialCapacity whenever the size of this Set becomes greater than the initialCapacity.

    The size of free space to add to the initialCapacity whenever the size of this Set becomes greater than the initialCapacity. It should be chosen such that incrementing need not take place too often.

    Definition Classes
    DefaultHints
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. val compactUpToUsed: Int

    Compact the underlying Array only if it has at most used space of this percentage.

    Compact the underlying Array only if it has at most used space of this percentage. Compression takes place only user-triggered by a call to compact. The higher this value the more often compact leads to a compression. 0 means never, 100 means always compact.

    Definition Classes
    DefaultHints
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. val hashTableThreshold: Int

    The internal representation of the adjacency list switches to a hash table when the number of edges at a given node exceeds this value.

    The internal representation of the adjacency list switches to a hash table when the number of edges at a given node exceeds this value. If both initialCapacity and capacityIncrement and this value are set to 0 a solely hash table representation will be used irrespective of the set size. This value should be close to the size limit an Array representation is more efficient on the JVM with regard to looking up a given element based on == as opposite to hashCode. Varying with JVM implementations/configurations this limit may come in somewhere between 10 and 30.

    Definition Classes
    DefaultHints
  12. val initialCapacity: Int

    The initial length of the internal Array representation.

    The initial length of the internal Array representation. It should be chosen such that it's greater than the final size in a significant percentage of cases. The less heap space is a concern, the higher initialCapacity may be set.

    Definition Classes
    DefaultHints
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def nextCapacity(currentCapacity: Int): Int

    Returns a positive number > currentCapacity for an array or 0 for a hash table.

    Returns a positive number > currentCapacity for an array or 0 for a hash table.

    Definition Classes
    Hints
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def productElementName(n: Int): String
    Definition Classes
    Product
  19. def productElementNames: Iterator[String]
    Definition Classes
    Product
  20. def propagate(fromSize: Int): Hints
    Definition Classes
    Hints
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Hints

Inherited from AnyRef

Inherited from Any

Ungrouped