Next: , Previous: , Up: built-in   [Contents][Index]


6.30 Type of stats objects

Core Type: <stats>
Parent Type: <struct>

Type of objects representing expression evaluation statistics.

Type constructor on <stats>: <stats> type-constructor obj

Validate obj as instance of <stats> and return it.

Type predicate on <stats>: <boolean> type-predicate obj

The type predicate is stats?.

Equality predicate on <stats>: <boolean> equality-predicate this {stats <stats>}

The equality predicate is struct=?.

Hash function on <stats>: <non-negative-fixnum> hash-function this

The hash function is struct-hash.

Methods

Method on <stats>: <non-negative-exact-integer> user-secs this

Apply stats-user-secs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> user-usecs this

Apply stats-user-usecs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> sys-secs this

Apply stats-sys-secs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> sys-usecs this

Apply stats-sys-usecs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> real-secs this

Apply stats-real-secs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> real-usecs this

Apply stats-real-usecs to the instance and return its return value.

Method on <stats>: <top> collection-id this

Apply stats-collection-id to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> gc-user-secs this

Apply stats-gc-user-secs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> gc-user-usecs this

Apply stats-gc-user-usecs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> gc-sys-secs this

Apply stats-gc-sys-secs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> gc-sys-usecs this

Apply stats-gc-sys-usecs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> gc-real-secs this

Apply stats-gc-real-secs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> gc-real-usecs this

Apply stats-gc-real-usecs to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> bytes-minor this

Apply stats-bytes-minor to the instance and return its return value.

Method on <stats>: <non-negative-exact-integer> bytes-major this

Apply stats-bytes-major to the instance and return its return value.


Next: , Previous: , Up: built-in   [Contents][Index]