File: gc.md

package info (click to toggle)
surgescript 0.5.4.4-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid
  • size: 1,876 kB
  • sloc: ansic: 13,674; makefile: 16
file content (28 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
GC
==

SurgeScript features a Garbage Collector (GC) that automatically disposes objects that cannot be reached from the root (i.e., their references are lost). The Garbage Collector is available at `System.gc`. Generally, you do not need to modify any of its settings.

Properties
----------

#### interval

`interval`: number.

Every `interval` seconds, the garbage collector will be called automatically.

#### objectCount

`objectCount`: number, read-only.

How many objects were disposed when the garbage collector was last called.

Functions
---------

#### collect

`collect()`

Calls the Garbage Collector manually.