I read that var had a variable memory consumption. What is memory consumption exactly?
What would beint a = 1 // 64 bit, 32 bit ?
var booly=1 // 1, 2, 4 bytes? equal to num bool=1 or boolean b=true ?
var bits=[0,1,0,0,1,0,1,0]; // 64 bytes .. 8 bytes or ... 1 byte?
var bitmatrix= [[0,1,0,0,1,0,1,0],[0,1,0,0,1,0,1,0]]; // ? bytes
class bitnode {var list=[[0,1,0,0,1,0,1,0],[0,1,0,0,1,0,1,0]];} 3, 20 bytes?
Thanks a lot.--
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
I guessed so... unfortunately.Well, not that I'd use it every day, but.. a Bitarray would be nice.
I read that var had a variable memory consumption. What is memory consumption exactly?What would beint a = 1 // 64 bit, 32 bit ?