Meta Project

The Unofficial Meta Documentation

SIZE-OF

Summary

SIZE-OF Returns the used size in memory of a variable

Category

Categoryname

Usage

SIZE-OF value

Arguments

value - description of the value

Refinements

This method has no refinements

Description

SIZE-OF Returns the used size in memory of a variable

Example Code

You can retrieve the size of a TYPE! Or you can retrieve the size of a variable.

let memory binary! (to natural! 10) * size-of floater!
write/line size-of floater!
write/line size-of memory

Results in

8
80

Related

To be done. No other related method names assigned yet.

Back to the Meta Methods Reference index