-
It would be awesome to extend Rerun’s data model to include graphs ([node-link relationships](https://en.wikipedia.org/wiki/Graph_(discrete_mathematics))), because it would allow more advanced use cas…
grtlr updated
1 month ago
-
Hi
Thanks for making this library. I've hit a problem when trying to write unit tests for a function I've written that determines the best config to use for a given device. The function is generic …
ghost updated
2 years ago
-
Need to devise some sort of custom indexer interface that can be used to support faster lookup of ent ids.
Use case in mind is for vimwiki-server where each ent has a region associated with it to d…
-
I am posting this issue mostly as a reminder that we should investigate why our current test suite didn't seem to catch the breakage from #76006 on any of our CI platforms
-
### How can we reproduce the crash?
The crash happens when I tried to run some node.js code from Adafruit's TinyUSB Arduino library, which showcases how the associated code works.
Reproduction steps…
-
I've been trying out some ideas with generic records and classes, and ran into a few issues. I saw #3406 and some of the [associated examples](https://github.com/chapel-lang/chapel/tree/master/test/cl…
-
@CziSKY Hi Kirra, thank you for all of your sincere contributions to the RowScript website! Now here's the new (but will be updated at any time) table of content for the **RowScript Tour** book.
I …
-
### Code
```rs
#![feature(generic_associated_types_extended)]
#![feature(feature(type_alias_impl_trait))]
trait HealthCheck {
async fn check();
}
fn do_health_check_par()
where
HealthCheck: …
-
seems like a lot of particles have a separate tagging function which causes extra logic for update and is_state_definition_equivalent. We should try to break that logic out.
-
Consider the following code:
```rust
trait Memory {
type Provenance;
}
struct BasicMemory;
impl Memory for BasicMemory {
type Provenance = ();
}
fn some_fn() {
let x: Basic…