GC

sealed abstract class GC

Garbage Collector. Application is going to be automatically linked with corresponding libraries that implement given collector. One of the:

  • None GC. Never frees allocated memory.

  • Boehm GC. Conservative mark-and-sweep garbage collector.

  • Immix GC. Mostly-precise mark-region garbage collector.

  • Commix GC. Mostly-precise mark-region garbage collector running concurrently.

Additional GCs might be added to the list in the future.

Value parameters:
dir

name of the gc

links

linking dependencies of the gc

Companion:
object
class Object
trait Matchable
class Any

Value members

Concrete methods

override def toString: String
Definition Classes
Any

Concrete fields