Source for file Set.php
Documentation is available at Set.php
- 1: <?php
- 3: /**
- 4: * Nette Framework
- 5: *
- 6: * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
- 7: *
- 8: * This source file is subject to the "Nette license" that is bundled
- 9: * with this package in the file license.txt.
- 10: *
- 11: * For more information please see http://nettephp.com
- 12: *
- 18: */
- 28: /**
- 29: * Provides the base class for a collection that contains no duplicate elements.
- 30: *
- 34: */
- 36: {
- 39: /**
- 40: * Appends the specified element to the end of this collection.
- 44: */
- 46: {
- 53: }
- 62: }
- 64: }
- 65: }
- 69: /**
- 70: * Returns the index of the first occurrence of the specified element,
- 71: * or FALSE if this collection does not contain this element.
- 75: */
- 77: {
- 84: }
- 85: }
- 89: /********************* ArrayObject cooperation ****************d*g**/
- 93: /**
- 94: * Not supported (only appending).
- 95: */
- 97: {
- 102: }
- 103: }
- 107: /**
- 108: * Not supported.
- 109: */
- 111: {
- 113: }
- 117: /**
- 118: * Not supported.
- 119: */
- 121: {
- 123: }
- 127: /**
- 128: * Not supported.
- 129: */
- 131: {
- 133: }
- 135: }