<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Subenji99</id>
	<title>Multi Theft Auto: Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Subenji99"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/Subenji99"/>
	<updated>2026-05-14T01:42:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20598</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20598"/>
		<updated>2009-07-13T19:58:46Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
&lt;br /&gt;
Oh, reading up, I'd like to point out that if you structure your table, planning for this, you can still use the # operator.&lt;br /&gt;
you have to count the additions you make to your table then use table.setn like so:&lt;br /&gt;
&lt;br /&gt;
table.setn(table, &amp;lt;number of values&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
if you are using a loop to create your table, it would be a simple matter to add it after:&lt;br /&gt;
&lt;br /&gt;
    table = {}&lt;br /&gt;
    local count = 0&lt;br /&gt;
    for _,v in pairs(results) do&lt;br /&gt;
        table[v] = someFunction(v)&lt;br /&gt;
        count = count + 1&lt;br /&gt;
    end&lt;br /&gt;
    table.setn(table, count)&lt;br /&gt;
&lt;br /&gt;
[http://www.lua.org/pil/19.1.html Array Size]&lt;br /&gt;
&lt;br /&gt;
In my case though, this function was still required as the table I was checking against was a returned table from an exported function of mapmanager.&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20597</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20597"/>
		<updated>2009-07-13T19:57:21Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
&lt;br /&gt;
Oh, reading up, I'd like to point out that if you structure your table, planning for this, you can still use the # operator.&lt;br /&gt;
you have to count the additions you make to your table then use table.setn like so:&lt;br /&gt;
&lt;br /&gt;
table.setn(table, &amp;lt;number of values&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
if you are using a loop to create your table, it would be a simple matter to add it after:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
table = {}&lt;br /&gt;
local count = 0&lt;br /&gt;
for _,v in pairs(results) do&lt;br /&gt;
    table[v] = someFunction(v)&lt;br /&gt;
    count = count + 1&lt;br /&gt;
end&lt;br /&gt;
table.setn(table, count)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
[http://www.lua.org/pil/19.1.html Array Size]&lt;br /&gt;
&lt;br /&gt;
In my case though, this function was still required as the table I was checking against was a returned table from an exported function of mapmanager.&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20596</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20596"/>
		<updated>2009-07-13T19:57:04Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
&lt;br /&gt;
Oh, reading up, I'd like to point out that if you structure your table, planning for this, you can still use the # operator.&lt;br /&gt;
you have to count the additions you make to your table then use table.setn like so:&lt;br /&gt;
&lt;br /&gt;
table.setn(table, &amp;lt;number of values&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
if you are using a loop to create your table, it would be a simple matter to add it after:&lt;br /&gt;
&amp;lt;source lang=lua&amp;gt;&lt;br /&gt;
table = {}&lt;br /&gt;
local count = 0&lt;br /&gt;
for _,v in pairs(results) do&lt;br /&gt;
    table[v] = someFunction(v)&lt;br /&gt;
    count = count + 1&lt;br /&gt;
end&lt;br /&gt;
table.setn(table, count)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
[http://www.lua.org/pil/19.1.html Array Size]&lt;br /&gt;
&lt;br /&gt;
In my case though, this function was still required as the table I was checking against was a returned table from an exported function of mapmanager.&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20595</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20595"/>
		<updated>2009-07-13T19:55:09Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
&lt;br /&gt;
Oh, reading up, I'd like to point out that if you structure your table, planning for this, you can still use the # operator.&lt;br /&gt;
you have to count the additions you make to your table then use table.setn like so:&lt;br /&gt;
&lt;br /&gt;
table.setn(table, &amp;lt;number of values&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
if you are using a loop to create your table, it would be a simple matter to add it after:&lt;br /&gt;
for _&lt;br /&gt;
table = {}&lt;br /&gt;
local count = 0&lt;br /&gt;
for _,v in pairs(results) do&lt;br /&gt;
    table[v] = someFunction(v)&lt;br /&gt;
    count = count + 1&lt;br /&gt;
end&lt;br /&gt;
table.setn(table, count)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
[http://www.lua.org/pil/19.1.html Array Size]&lt;br /&gt;
&lt;br /&gt;
In my case though, this function was still required as the table I was checking against was a returned table from an exported function of mapmanager.&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20594</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20594"/>
		<updated>2009-07-13T19:54:55Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
&lt;br /&gt;
Oh, reading up, I'd like to point out that if you structure your table, planning for this, you can still use the # operator.&lt;br /&gt;
you have to count the additions you make to your table then use table.setn like so:&lt;br /&gt;
&lt;br /&gt;
table.setn(table, &amp;lt;number of values&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
if you are using a loop to create your table, it would be a simple matter to add it after:&lt;br /&gt;
for&lt;br /&gt;
table = {}&lt;br /&gt;
local count = 0&lt;br /&gt;
for _,v in pairs(results) do&lt;br /&gt;
    table[v] = someFunction(v)&lt;br /&gt;
    count = count + 1&lt;br /&gt;
end&lt;br /&gt;
table.setn(table, count)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
[http://www.lua.org/pil/19.1.html Array Size]&lt;br /&gt;
&lt;br /&gt;
In my case though, this function was still required as the table I was checking against was a returned table from an exported function of mapmanager.&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20593</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20593"/>
		<updated>2009-07-13T19:54:34Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
&lt;br /&gt;
Oh, reading up, I'd like to point out that if you structure your table, planning for this, you can still use the # operator.&lt;br /&gt;
you have to count the additions you make to your table then use table.setn like so:&lt;br /&gt;
&lt;br /&gt;
table.setn(table, &amp;lt;number of values&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
if you are using a loop to create your table, it would be a simple matter to add it after:&lt;br /&gt;
&lt;br /&gt;
table = {}&lt;br /&gt;
local count = 0&lt;br /&gt;
for _,v in pairs(results) do&lt;br /&gt;
    table[v] = someFunction(v)&lt;br /&gt;
    count = count + 1&lt;br /&gt;
end&lt;br /&gt;
table.setn(table, count)&lt;br /&gt;
&lt;br /&gt;
[http://www.lua.org/pil/19.1.html Array Size]&lt;br /&gt;
&lt;br /&gt;
In my case though, this function was still required as the table I was checking against was a returned table from an exported function of mapmanager.&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20592</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20592"/>
		<updated>2009-07-13T19:53:46Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
&lt;br /&gt;
Oh, reading up, I'd like to point out that if you structure your table, planning for this, you can still use the # operator.&lt;br /&gt;
you have to count the additions you make to your table then use table.setn like so:&lt;br /&gt;
&lt;br /&gt;
table.setn(table, &amp;lt;number of values&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
if you are using a loop to create your table, it would be a simple matter to add it after:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;table = {}&lt;br /&gt;
local count = 0&lt;br /&gt;
for _,v in pairs(results) do&lt;br /&gt;
    table[v] = someFunction(v)&lt;br /&gt;
    count = count + 1&lt;br /&gt;
end&lt;br /&gt;
table.setn(table, count)&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://www.lua.org/pil/19.1.html Array Size]&lt;br /&gt;
&lt;br /&gt;
In my case though, this function was still required as the table I was checking against was a returned table from an exported function of mapmanager.&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20591</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20591"/>
		<updated>2009-07-13T18:43:20Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
table.getn was replaced by the #-operator, which returns the number of table elements with a numerical (!) index.&amp;lt;br/&amp;gt;&lt;br /&gt;
table.size counts all elements regardless of which type their index is.&amp;lt;br/&amp;gt;&lt;br /&gt;
Of course it's a bad idea to use this function for a table with only numerical indices.&amp;lt;br/&amp;gt;&lt;br /&gt;
[[User:NeonBlack|NeonBlack]] 16:19, 13 July 2009 (CEST)&lt;br /&gt;
----&lt;br /&gt;
Indded, I actually just attempted it with non-numerical indices and found it didn't work.  I stand corrected. :D&lt;br /&gt;
&lt;br /&gt;
I shall leave my humiliation (lol) here so anyone else wondering what the point of this function would be can see that it is for non-numerical indices.&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 20:43, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20589</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20589"/>
		<updated>2009-07-13T04:56:41Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20588</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20588"/>
		<updated>2009-07-13T04:54:47Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
or the length operator:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#table&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--[[User:Subenji99|Subenji99]] 06:54, 13 July 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20587</id>
		<title>Talk:Table.size</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Table.size&amp;diff=20587"/>
		<updated>2009-07-13T04:53:33Z</updated>

		<summary type="html">&lt;p&gt;Subenji99: Feel this function is unnecessary.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;What about using the builtin lua function:&lt;br /&gt;
table.getn(table)&lt;br /&gt;
&lt;br /&gt;
or the length operator:&lt;br /&gt;
#table&lt;/div&gt;</summary>
		<author><name>Subenji99</name></author>
	</entry>
</feed>