collectGarbage method

void collectGarbage()

Immediately run the garbage collector to free unused memory.

Implementation

void collectGarbage() {
  _bindings.wrenCollectGarbage(_ptrVm);
}