theamarin

Results 9 comments of theamarin

Thank you again for your quick reply and thorough analysis! I am absolutely happy to make `Item` a `ref object` to simplify things. It absolutely makes sense to allow anchors...

I am using the workaround you proposed above in my code quite a lot by now, as it leverages the need to use `ref object`s whenever anchors are used. Just...

Hi @ringabout, thank you so much for your quick reply. Actuall if I annotate an `object` type with `{.acyclic.}`, the ORC recursion disappears. Also, the `isCyclic()` function returns `true` without...

> Did you use it in the multiple threads? No, everything is single-threaded here. I'm still working on a minimum breaking example.

Unfortunately, I did not manage to get the breaking example shorter than the following. Also, you need to have `yaml` aka `nimyaml` installed, I tested it with the following versions:...

I can reproduce the valgrind errors, also with Nim 2.0.2, but I am still not able to debug the Nim internals. Is there any progress on this?

The example given by @bluenote10 is exactly what I tried first when I was experimenting with Nim. I think this is the least astonishing way and quite intuitive. So I...

Hi @Araq, thank you very much for your quick response! Please note I am still quite new to Nim so I would be happy to get some pointers here. I...

I now use the following entry in `nimdoc.cfg` to point to "my module", which also works with nested projects, i.e., from other modules within subdirectories: `My Module` This is maybe...