Patrick Florek fa87eca375 Add new class Set for simple Set-theoretical operations
### Features

* Works only with primitive types int, float, string
* Implements set theortic operations union, intersection, complement
* Modifies set by adding, removing elements
* Implements \IteratorAggregate for use in loops

### Implementation details

Based on array functions:
* array_diff,
* array_merge,
* array_intersection,
* array_unique,
* array_values,
* sort.

### Drawbacks

* **Do not work with objects.**
* Power set and Cartesian product returning array of Set
2016-09-10 13:24:43 +02:00
..
2016-07-24 14:01:17 +02:00
2016-07-19 22:01:39 +02:00
2016-08-21 14:03:20 +02:00
2016-07-24 13:42:50 +02:00
2016-05-07 23:17:46 +02:00
2016-05-07 23:17:52 +02:00
2016-07-24 13:52:52 +02:00