-
Hi,
I want to read, as a start position, course, speed on my boat running NMEA2000. I have a on the boat pc running Linux. Would this library be able to help reading from the NMEA2000 net ?
Do t…
-
Is less verbosity the only main benefit of typeclasses over just inputting a set of functions?
Typeclasses can do where `bar` is a member of `Function`:
```
foo(x: A) where Function
bar(x)
…
-
## Context
This is a continuation of a discussion that was had on the WebGPU matrix. There has been some discussion of this problem in #2229 but was not the primary topic.
As of the writing of t…
-
Hey folks.
Great to have a QR code library in rust. Love it.
A question thought:
Why do you use `i32` everywhere when I THINK it should only ever be unsigned (`u32`)?
Like you wouldn't need things…
-
# Generalized Distributional TV
## Overview
This is a proposal for a new TV type that encompasses probabilistic,
fuzzy, distributional TV types and more. In short it is a
distributional TV that may w…
-
Default arguments not reinitialized
```
proc _test(@test = array()) {
@test[] = 1
return(@test)
}
for(@i = 0, @i < 3, @i++) {
console(_test())
}
{1}
{1, 1}
{1, 1, 1}
```
-
@shelby3 [wrote](https://github.com/keean/traitscript/issues/2#issuecomment-248102324):
> Also, the compiler can use a much simpler form of path analysis (independent of run-time state) to do that pe…
-
# Yet another enum proposal
Related: #19814, #28438
# First of all, what is the issue with `const`? Why can't we use that instead?
Well first of all, `iota` of course only works with anythin…
-
Prior discussion:
https://github.com/keean/zenscript/issues/14#issuecomment-308722477
https://github.com/keean/zenscript/issues/33#issuecomment-362720879
https://github.com/keean/zenscript/is…
-
Union types express a subtyping relationship, but I am unclear as to whether typeclasses (i.e. Rust's traits) do?
If a `trait B` extends another `trait A` and `B` reuses the implementations of `A`, c…