I just noticed that Table.Count only counts non-nil values. For example:
tbl = {"hello", nil, "world"};
tblcount = Table.Count(tbl);
tblcount is equal to 2 instead of 3. Is this a bug or a feature? Is there a way to get the actual Table count?...
Announcement
Collapse
No announcement yet.
Search Result
Collapse
3 results in 0.0064 seconds.
Keywords
Members
Tags
-
Tables operations
Hello to every one!
I have 3 tables
tbl_1, tbl_2, tbl_3.
The first table tbl_1 always has much more items that tbl_2 and tbl_3.
My issue is that I want to remove all tbl_1 items that are on tbl_2 and the result should be a new table tbl_3.
Example:
tbl_1...
-
LuaTables and how to store it to file?
Hi all,
It's nice to be back in AMS.
Im a bit shaken by discovering how rusty your skills get when you don't use em for years.
Can some one help me get my head around this problem...
I am creating a small app that my students should make and we are...