How to add comments within a coll object

Hunter's icon

Hi there - is there a syntax or way to put comments within your coll object? Thank you!

Source Audio's icon

put your comment at the end of data, and rute it sparately out when recalling data.
1, 22 33 44 "this is comment about this index";
or ...
you can insert index for each stored line
1, 22 33 44 55;
1c, this is commnt about index 1;

Roman Thilenius's icon

what he says. just use an additional line at the end of your data.

or... what about second parallel coll?

Source Audio's icon

parallel coll woud mean 2 files to deal with, in case read/write is needed.

Roman Thilenius's icon

i´ve been using index numbers 1001-1037 to add comments to index 1-37.
your "1c" is also nice.

Source Audio's icon

it is ok, but adding comment at line end is more handy in case of refering jit.cellblock, or even simple line recall.
but, as you say it depends on what for one needs comment

Hunter's icon

Thanks both!