Source for file ArrayList.php
Documentation is available at ArrayList.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 11: */
- 15: /**
- 16: * Provides the base class for a generic list (items can be accessed by index).
- 17: *
- 20: */
- 22: {
- 27: /**
- 28: * Inserts the specified element at the specified position in this list.
- 33: */
- 35: {
- 39: }
- 46: }
- 50: /**
- 51: * Removes the first occurrence of the specified element.
- 55: */
- 57: {
- 68: }
- 69: }
- 73: /**
- 74: * Returns the index of the first occurrence of the specified element,.
- 75: * or FALSE if this list does not contain this element.
- 78: */
- 80: {
- 83: }
- 87: /********************* interface \ArrayAccess ****************d*g**/
- 91: /**
- 92: * Replaces (or appends) the item (\ArrayAccess implementation).
- 97: */
- 99: {
- 109: }
- 111: }
- 112: }
- 116: /**
- 117: * Returns item (\ArrayAccess implementation).
- 121: */
- 123: {
- 127: }
- 130: }
- 134: /**
- 135: * Exists item? (\ArrayAccess implementation).
- 138: */
- 140: {
- 143: }
- 147: /**
- 148: * Removes the element at the specified position in this list.
- 152: */
- 154: {
- 160: }
- 165: }
- 167: }