Gregory Conrad

Results 109 comments of Gregory Conrad

In the current experimental implementation, _dynamic capsules_ (I'm calling "families" that to be consistent with the Rust implementation/docs) would keep all of the keys/variants stored in the `Map` even when...

Update: the following has been added under the top-level `experimental.dart` file May also add some helper functions to `experimental.dart` to make stuff more ergonomic: ```dart final myCapsule = capsule((use) {...

For those following, here's a test case that shows how to use this new (experimental) side effect: ```dart test('fibonacci numbers', () { DynamicCapsule fibonacciCapsule(CapsuleHandle use) { return use.dynamic((use, n) {...

New version released (`1.12.0`) with _experimental_ dynamic capsule implementation. It seems to work, but I wouldn't recommend using it for anything mission-critical anytime soon. `1.12.0` also adds a new experimental...

I've thought about this some more and decided on a few things: - `forceIdempotent`, as mentioned [here](https://github.com/GregoryConrad/rearch-dart/issues/221#issuecomment-2380392779), is not going to happen. It clashes far too much with the rest...

Thanks for the info! Appreciate the quick turnaround

Hitting this one too; @Ehesp what needs to be done to get that PR merged? TYIA

Also noticing this for my docs.page site: [rearch.gsconrad.com](https://rearch.gsconrad.com). It's unfortunate, since I am trying to use the redirection for locales as suggested here https://use.docs.page/locales#redirecting, but doing so breaks going to...

My workaround for the index.mdx redirect failing was to duplicate my English index.mdx into `/docs/index.mdx`, followed by duplicating my English sidebar under the `default` sidebar: https://use.docs.page/locales#displaying-content. However, this is extremely...