gc.monkey2 417 B

12345678910111213141516
  1. Namespace monkey.gc
  2. Extern
  3. #rem monkeydoc Performs a garbage collection.
  4. Marks all unused memory as 'garbage' and makes it available for reuse in the future.
  5. You should not generally need to use this method as garbage collection is performed automatically.
  6. However, it can be useful when debugging a program for memory leaks to force a garbage collection to
  7. run.
  8. #end
  9. Function GCCollect:Void()="bbGC::collect"