You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Console
The base object for tracking track the time it took to complete operations.
#### start [Function]
Starting the internal clock
##### Example
```go
Clock clock = new Clock();
clock.start();
```
#### stop [Function]
Stopping the internal clock
##### Example
```go
Clock clock = new Clock();
clock.start();
clock.stop();
```
### getDuration [Function]
Get the duration of the time between the start and the stop. Return type is a double
##### Example
```go
Clock clock = new Clock();
clock.start();
clock.stop();
double duration = clock.getDuration();
```