Packages

sealed trait Hints extends AnyRef

Enables tuning of the internal representation of adjacency lists. Basically, an Array representation is preferable over a hash table up to a node degree of about 200.

Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Hints
  2. AnyRef
  3. Any
Implicitly
  1. by ChainingOps
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def 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.

  2. abstract def 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.

  3. abstract def 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.

  4. abstract def 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.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Hints toany2stringadd[Hints] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Hints, B)
    Implicit
    This member is added by an implicit conversion from Hints toArrowAssoc[Hints] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def ensuring(cond: (Hints) => Boolean, msg: => Any): Hints
    Implicit
    This member is added by an implicit conversion from Hints toEnsuring[Hints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (Hints) => Boolean): Hints
    Implicit
    This member is added by an implicit conversion from Hints toEnsuring[Hints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: => Any): Hints
    Implicit
    This member is added by an implicit conversion from Hints toEnsuring[Hints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): Hints
    Implicit
    This member is added by an implicit conversion from Hints toEnsuring[Hints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def nextCapacity(currentCapacity: Int): Int

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

  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def pipe[B](f: (Hints) => B): B
    Implicit
    This member is added by an implicit conversion from Hints toChainingOps[Hints] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  22. def propagate(fromSize: Int): Hints
  23. val self: Hints
    Implicit
    This member is added by an implicit conversion from Hints toChainingOps[Hints] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def tap[U](f: (Hints) => U): Hints
    Implicit
    This member is added by an implicit conversion from Hints toChainingOps[Hints] performed by method ChainingOps in scalax.collection.
    Definition Classes
    ChainingOps
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. 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
  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Hints toStringFormat[Hints] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (Hints, B)
    Implicit
    This member is added by an implicit conversion from Hints toArrowAssoc[Hints] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion ChainingOps fromHints to ChainingOps[Hints]

Inherited by implicit conversion any2stringadd fromHints to any2stringadd[Hints]

Inherited by implicit conversion StringFormat fromHints to StringFormat[Hints]

Inherited by implicit conversion Ensuring fromHints to Ensuring[Hints]

Inherited by implicit conversion ArrowAssoc fromHints to ArrowAssoc[Hints]

Ungrouped