-
I was attempting to capture a per-test start and end time, so that I could refer to them during reporting. More broadly, I was attempting to augment the normal failure report with any (postgres) log …
-
I've been thinking a lot about an alternative to multimethods that use patterns in the definition and partial matching in dispatch. I imagine two kinds of this to be useful:
1. A single dispatch on…
den1k updated
3 years ago
-
```python
def test(a:int, b:list[int]):
print "b of list[int] called"
def test(a:int, b:int):
print "b of int called"
test(1, [2])
test(1, 2)
```
error: expected function input t…
-
The [advice](https://github.com/bbatsov/clojure-style-guide#multimethod-dispatch-val-placement) "place the dispatch-val of a multimethod on the same line as the function name" in "Multimethod Dispatch…
-
If I have my own Clojure2d window/canvas, then I want to be able to use widgets on the same canvas.
There might be an issue with the multimethods for the events in clojure2d.
-
In the context of https://github.com/aardappel/lobster/pull/97 I was thinking what ideally the semantics of `is` should be.
It serves two purposes, 1) dynamic checks (as a replacement for dynamic d…
-
Attach event functions to Widgets instead of via Multimethods. That way its more flexible and event functions could be overwritten on the fly via "update!".
-
the reloaded workflow’s `refresh` can interfere with AST generation in `refactor-nrepl` as if you run `refresh` or `reset` it can break AST generation as `refresh` actively `unloads` some namespaces. …
-
Objects like runs, closures/functions and flows either take unnecessary stack space or cannot be persisted to the stack.
We need a way for such objects to be passed between partitions. This may en…
-
Maybe there is something I'm missing because the lack of Rust syntax/concepts understanding (I'm still learning, sorry) but the goal of the Visitor pattern is not only to "_allow multiple different al…