source: Common/Generics.php

Last change on this file was 14, checked in by chronos, 3 years ago
  • Modified: Updated files to newer version.
File size: 272 bytes
Line 
1<?php
2
3class 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.