Description of atom dataized explains how will be dataized that decorates something looks like bytes, for example
[] > five
5 > @
[] > ignored-attribute
(dataized five).as-bytes > result
result will be equal 00-00-00-00-00-00-00-05
but the description does not explain how object without @ will be dataized, for example:
[] > obj
1 > one
2 > two
3 > tree
(dataized obj).as-bytes > result
What is result equals to?