source:
Common/Generics.php
| Last change on this file was 14, checked in by , 4 years ago | |
|---|---|
| File size: 272 bytes | |
| Line | |
|---|---|
| 1 | <?php |
| 2 | |
| 3 | class GenericList |
| 4 | { |
| 5 | public array $Items = array(); |
| 6 | |
| 7 | function Add($Item): void |
| 8 | { |
| 9 | $this->Items[] = $Item; |
| 10 | } |
| 11 | |
| 12 | function RemoveAt(int $Index): void |
| 13 | { |
| 14 | unset($this->Items[$Index]); |
| 15 | } |
| 16 | |
| 17 | function Count(): int |
| 18 | { |
| 19 | return count($this->Items); |
| 20 | } |
| 21 | } |
Note:
See TracBrowser
for help on using the repository browser.
![(please configure the [header_logo] section in trac.ini)](/PHPlib/chrome/site/your_project_logo.png)