Rudi Theunissen

Results 20 issues of Rudi Theunissen

Following the documentation to set `route` to `false` in the config, I noticed that the header in the nav always uses `/api-documentation` as the URL, but that route that does...

At the moment the support for nested structures is limited. We'd like to improve this as it's a common situation and should in theory work as you would expect. This...

Discussion
Feature

The map method was added to Set in v1.2.7, but the documentation on php.net does not include that. It would be valuable to do a complete audit of the current...

Documentation

It's currently possible to modify / update a collection during iteration. This leads to undefined behaviour, because the internal iterator is not aware of these modifications. There are three possible...

Improvement
Waiting

All structures share the same global FCI, so if while sorting something you try to sort something else, things will break. The best way to handle this is to save...

Improvement
Internals

We currently allow allocation via `allocate(int $capacity)`, but we don't check for overflow or have a maximum capacity. @nikic also mentioned that we should be using the `safe_*` variants when...

Improvement
Internals

Python example: ``` python a = dict() a['a'] = 3 a['b'] = 2 a['c'] = 1 print a ``` ``` {'a': 3, 'c': 1, 'b': 2} ``` I had this...

Improvement
Question

Would be nice to show how some common tasks can be achieved with appropriate structures.

Help wanted
Request