Eric Rodrigues Pires
Eric Rodrigues Pires
Also important to note that `iftype` has an `else` clause.
I think there's a bit of confusion as to the problem that `package.json` tries to solve. The key of the JSON object (called the package name) specifies which package should...
@SCKelemen Yes. The syntatic sugar is "xor". Example: https://playground.ponylang.io/?gist=19f5ff394234d6e19ec5bcd1b66ea9d0
Copying my comments from the [original Zulip thread](https://ponylang.zulipchat.com/#narrow/stream/189985-beginner-help/topic/Sort.20with.20custom.20comparator): > My one qualm is the comparator signature being `{(B): USize}` whereas you'd usually have `{(B, B): ISize}` in other languages, and...
With a generic lambda approach like the one I showed above, adding a `SortBy` structure can be done in 10 lines: ```pony primitive SortBy[A: Seq[B] ref, B: Any #read] fun...
> 1. How does the extra 10 lines of code solve the problems raised by @jemc ? It doesn't. You'd create a sort function using the `Sort` implementation directly instead,...
I personally prefer an explicit solution (i.e. the proposed RFC) than an implicit one that might lead to refactoring bugs. That said, I am in favour of this RFC, as...
Today, you can use the [`toc_depth` option](https://python-markdown.github.io/extensions/toc/#usage), which was added to Python-Markdown [in version 3.0](https://github.com/Python-Markdown/markdown/pull/686).
Hi! Could you give an example of your request? I'm not entirely sure if you intend to mock the event listener, event emission, or something else.
Good point. I've moved that part to issue #13, since it doesn't directly affect `CONTRIBUTING.md`.