Differences

This shows you the differences between two versions of the page.

Link to this comparison view

oss:arraylist [2021/09/04 20:17]
mihael created
oss:arraylist [2021/09/04 20:29] (current)
mihael
Line 1: Line 1:
 ====== ArrayList ====== ====== ArrayList ======
  
-<blockquote>An ArrayList is a one-dimensional array. In our case it is also a dynamic array which means that the size is not set at compile time but at runtime and it can grow if required.+An ArrayList is a one-dimensional array. In our case it is also a dynamic array which means that the size is not set at compile time but at runtime and it can grow if required.
  
-An array allocates memory for all its elements lumped together as one block of memory. In this implementation only the pointer to the data is stored in this one block of memory. In this way millions of entries can be stored and accessed.</blockquote>+An array allocates memory for all its elements lumped together as one block of memory. In this implementation only the pointer to the data is stored in this one block of memory. In this way millions of entries can be stored and accessed.
  
-| Current version | 2.0.3 | +**Current version** | 2.0.3 | 
-| Author | Mihael Schmidt | +**Author** | Mihael Schmidt | 
-| License | MIT | +**License** | MIT | 
-| Website | https://bitbucket.org/m1hael/arraylist | +**Website** | https://bitbucket.org/m1hael/arraylist | 
-| Docs | http://iledocs.rpgnextgen.com |+**Docs** | http://iledocs.rpgnextgen.com |
  
 ===== Installation ===== ===== Installation =====
-The software is packaged as an iPKG RPM package. It is available at the repository https://repo.rpgnextgen.com. +The software is packaged as an [[https://bitbucket.org/m1hael/ipkg | iPKG]] RPM package. It is available at the repository https://repo.rpgnextgen.com.
  
 +<code>
 +ipkg addrepo 'RPGNextGen https://repo.rpgnextgen.com/repository'
 +ipkg install arraylist
 +</code>