| 1 | <?php namespace GenericCollections; |
||
| 16 | class Set extends Collection |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $elementType |
||
| 21 | * @param array $elements |
||
| 22 | * @param int $options Options::COMPARISON_EQUAL |
||
| 23 | */ |
||
| 24 | 9 | public function __construct($elementType, array $elements = [], $options = Options::UNIQUE_VALUES) |
|
| 32 | } |
||
| 33 |