case class CheckedHints extends Hints with Product with Serializable
- Annotations
- @SerialVersionUID()
- Alphabetic
- By Inheritance
- CheckedHints
- Serializable
- Serializable
- Product
- Equals
- Hints
- AnyRef
- Any
- by CollectionsHaveToParArray
- by ChainingOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from CheckedHints to any2stringadd[CheckedHints] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (CheckedHints, B)
- Implicit
- This member is added by an implicit conversion from CheckedHints to ArrowAssoc[CheckedHints] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
val
capacityIncrement: Int
The size of free space to add to the
initialCapacity
whenever the size of thisSet
becomes greater than theinitialCapacity
.The size of free space to add to the
initialCapacity
whenever the size of thisSet
becomes greater than theinitialCapacity
. It should be chosen such that incrementing need not take place too often.- Definition Classes
- CheckedHints → Hints
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
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 tocompact
. The higher this value the more oftencompact
leads to a compression.0
means never,100
means always compact.- Definition Classes
- CheckedHints → Hints
-
def
ensuring(cond: (CheckedHints) ⇒ Boolean, msg: ⇒ Any): CheckedHints
- Implicit
- This member is added by an implicit conversion from CheckedHints to Ensuring[CheckedHints] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (CheckedHints) ⇒ Boolean): CheckedHints
- Implicit
- This member is added by an implicit conversion from CheckedHints to Ensuring[CheckedHints] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): CheckedHints
- Implicit
- This member is added by an implicit conversion from CheckedHints to Ensuring[CheckedHints] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): CheckedHints
- Implicit
- This member is added by an implicit conversion from CheckedHints to Ensuring[CheckedHints] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from CheckedHints to StringFormat[CheckedHints] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
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
andcapacityIncrement
and this value are set to0
a solely hash table representation will be used irrespective of the setsize
. This value should be close to thesize
limit anArray
representation is more efficient on the JVM with regard to looking up a given element based on==
as opposite tohashCode
. Varying with JVM implementations/configurations this limit may come in somewhere between 10 and 30.- Definition Classes
- CheckedHints → Hints
-
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 finalsize
in a significant percentage of cases. The less heap space is a concern, the higherinitialCapacity
may be set.- Definition Classes
- CheckedHints → Hints
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
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
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
pipe[B](f: (CheckedHints) ⇒ B): B
- Implicit
- This member is added by an implicit conversion from CheckedHints to ChainingOps[CheckedHints] performed by method ChainingOps in scalax.collection.
- Definition Classes
- ChainingOps
-
def
propagate(fromSize: Int): Hints
- Definition Classes
- Hints
-
val
self: CheckedHints
- Implicit
- This member is added by an implicit conversion from CheckedHints to ChainingOps[CheckedHints] performed by method ChainingOps in scalax.collection.
- Definition Classes
- ChainingOps
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tap[U](f: (CheckedHints) ⇒ U): CheckedHints
- Implicit
- This member is added by an implicit conversion from CheckedHints to ChainingOps[CheckedHints] performed by method ChainingOps in scalax.collection.
- Definition Classes
- ChainingOps
-
def
toParArray: ParArray[T]
- Implicit
- This member is added by an implicit conversion from CheckedHints to CollectionsHaveToParArray[CheckedHints, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (CheckedHints) ⇒ GenTraversableOnce[T] is in scope.
- Definition Classes
- CollectionsHaveToParArray
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
→[B](y: B): (CheckedHints, B)
- Implicit
- This member is added by an implicit conversion from CheckedHints to ArrowAssoc[CheckedHints] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Welcome to the Graph for Scala API reference. Some suggested navigation entry points:
Graph
mutable.Graph
and its inner nodes.GraphEdge
objectedge
packageGraphPredef
object andImplicits
object.GraphTraversal
andTraverserInnerNode
.RandomGraph
.GraphGen
.