-
Implicit defs are currently recomputed at the call site, which can result in a lot of needless object creation and reducing the performance of users.
It would be absolutely fantastic if implicit defs…
-
Inspired by an [article](http://blog.stephencleary.com/2013/01/async-oop-2-constructors.html) on async initialization:
> It would be useful to be able to use `await` in a constructor, but this would …
-
This is probably best illustrated with an example. Right now, we can write:
```
primitive Fibonacci
fun apply(x: U64): U64 =>
match x
| 0 => 0
| 1 => 1
else Fibonacci(x - 1) + Fibon…
-
Hi!
The current (2014-05-23) version of the specification seems to only allow _primitive_ types (called “value” types) inside strongly typed arrays. As an enhancement, I am requesting that strongly t…
-
> My thinking is that "controller" is not sufficiently agnostic; the word comes with MVC baggage, yet it's use is very flexible
> [source](https://github.com/lhorie/mithril.js/issues/413#issuecomment-…
-
# Description:
Port my [GLSLPlanet](https://github.com/fluffyfreak/GLSLPlanet) project back into Pioneer.
## ToDo:
### Re-implement Noise:
Re-implement all of the noise methods in GLSL and then back…
-
I didn't see any issues for keyword arguments, any plans for this in the future?
---
NOTE: The bug tracker is not the place to have a design discussion. Please direct all design discussion to the et…
-
The most apparent and strong tendency in modern programming is the growing interest to functional paradigm. Most recent languages like Scala, Ceylon and Rust are built around the principles of functio…
-
As of version 0.11.0 Scala support is provided through the use of implicits. Conversations on Twitter are bringing up other possible improvements. Let's use this issue to discuss.
-
reactive-banana makes heavy use of extensions (GADTs, type families), preventing it from being compiled with the UHC compiler.
The semantics model itself (model.hs) is clean in this respect.
While th…