<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://alteeve.com/w/index.php?action=history&amp;feed=atom&amp;title=Array</id>
	<title>Array - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://alteeve.com/w/index.php?action=history&amp;feed=atom&amp;title=Array"/>
	<link rel="alternate" type="text/html" href="https://alteeve.com/w/index.php?title=Array&amp;action=history"/>
	<updated>2026-06-10T19:19:22Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.3</generator>
	<entry>
		<id>https://alteeve.com/w/index.php?title=Array&amp;diff=443&amp;oldid=prev</id>
		<title>Digimer: Created page with &#039;{{header}}  An array, in programming terms, usually refers to an indexed collection of elements. The index is usually numerical, with each element being added increasing the inde…&#039;</title>
		<link rel="alternate" type="text/html" href="https://alteeve.com/w/index.php?title=Array&amp;diff=443&amp;oldid=prev"/>
		<updated>2009-10-12T01:57:55Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;#039;{{header}}  An array, in programming terms, usually refers to an indexed collection of elements. The index is usually numerical, with each element being added increasing the inde…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Páàjì titun&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{header}}&lt;br /&gt;
&lt;br /&gt;
An array, in programming terms, usually refers to an indexed collection of elements. The index is usually numerical, with each element being added increasing the index count and each removal of an element reducing it. Generally there is no direct relation between an index position and which element it points to. An entry in an array may move around within the array as the array itself is modified.&lt;br /&gt;
&lt;br /&gt;
* Arrays are generally faster than dictionaries/[[hash]] tables.&lt;br /&gt;
&lt;br /&gt;
Arrays are often expressed as:&lt;br /&gt;
&lt;br /&gt;
* Creating an array with four elements:&lt;br /&gt;
 array=(&amp;quot;first_element&amp;quot;, &amp;quot;another_element&amp;quot;, 12, &amp;quot;30.5&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
* Retrieving the first element:&lt;br /&gt;
 print array[0];    # Prints &amp;quot;first_element&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Removing the first element, then reprinting the first element.&lt;br /&gt;
 shift array;       # Shift the first element off the array, shortening the array by 1.&lt;br /&gt;
 print array[0];    # Prints &amp;quot;another_element&amp;quot; now, because &amp;quot;first_element&amp;quot; has been removed.&lt;br /&gt;
&lt;br /&gt;
In [[Perl]], arrays are preceded with the &amp;#039;&amp;lt;span class=&amp;quot;code&amp;quot;&amp;gt;@&amp;lt;/span&amp;gt;&amp;#039; symbol.&lt;br /&gt;
&lt;br /&gt;
{{footer}}&lt;/div&gt;</summary>
		<author><name>Digimer</name></author>
	</entry>
</feed>