SIZE-OF Returns the used size in memory of a variable
Categoryname
SIZE-OF value
value - description of the value
This method has no refinements
SIZE-OF Returns the used size in memory of a variable
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
To be done. No other related method names assigned yet.