Matus Goljer

Results 716 comments of Matus Goljer

There are some problems with dispatch, for example, what do you do when the value is nil? It can be both plist and alist. One would need to provide some...

@Wilfred I don't see why you wouldn't be able to write `-pl-delete-by`. If you clear the entire list, you'll get `nil`, just like `-remove` does. This is not about making...

- For hashtables it simply doesn't make much sense. We can implement it by getting the key list, finding the proper equal key, then looking that one up the conventional...

Sadly I don't have the time now that I would require to push this somewhere, not in the near future anyway. A review of changes in the core would also...

I guess I was looking for something like `foreach` in the traditional languages, i.e in Java you write `for (Foo stuff : stuffs)` but I can imagine doing destructuring on...

I've implemented this in a pull request, not sure about the naming though. `-dolist` is natural choice but does not fit with the dash's use of `-each` for the same...

Can we do this with partition and transpose? This gets me pretty far ``` (apply '-zip-fill nil (-partition-all 3 '(1 2 3 4 5 6 7 8))) ```

Yea, I said pretty far not to the end :D I was hoping that the zip would not cons if there are just two items, but it is done so...

Yes, I wanted to do this for a long time, and also for `cl-defstruct` (not sure how to do that though)

Oh yes... I confused myself :D The thing I wasn't sure about was related to a different project. Pulling the values is of course probably quite easy.