Nim v2: what would you change?

2022-04-30 Thread SFR0815
Well, just to add my point to the wish list: unconstrained recursive module imports

Nested concepts

2021-09-29 Thread SFR0815
Well, I already mentioned, that the `var` for the source is superfluous for the example above. There are just some other items within my current research requiring `var`. Just, for the moment, I am requiring it as a constant reminder for something else.

Nested concepts

2021-09-27 Thread SFR0815
Works. Much nicer code, I must admit :-)

Nested concepts

2021-09-27 Thread SFR0815
OK, will try. `var` is superfluous - there to allow the wrapperless deepcopy as a default. Thank you!

Nested concepts

2021-09-26 Thread SFR0815
Thank you, shirleyquirk for your comments. Took me a while to get trough them. Ad `new-style concepts`: I have not yet looked into this. Is there any documentation (or alike) available yet? (Tried to find some ...) - Would really like to start using these rather sooner than later. Ad `somethi

Nested concepts

2021-09-23 Thread SFR0815
Dear all, I am well aware of concepts being experimental. Nevertheless, they have proven to be quite useful. So, I apply them quite regularly ... The problem I am currently trying to solve: I have a 3-layer data structure: (a) a catalogue of matrices, (b) a matrix and (c) the elements of a mat

Destroying ref objects

2021-09-08 Thread SFR0815
> Thanks I've actually learned a bit here too. Well, my learning curve was somewhat steeper, thank you again. And if I understood the background sufficiently well, I might have found a reasonable solution for my issue that involves the lessons learned. For me, it looks sufficiently foolproof, a

Destroying ref objects

2021-09-07 Thread SFR0815
For the sake of completeness: > Your doParent is odd since it’s calling “parent destroy” twice but not at the > end. Had another look at this item. It's because I am using `discard` (& I shouldn't). Double call at the end is avoided by: proc doParent() = var parent

NimConf 2021

2021-06-08 Thread SFR0815
OK. Good to know. Not a speaker. :-)

NimConf 2021

2021-06-07 Thread SFR0815
Still some chance to register for the conf? - Or simply too late?

GC Safe Problem

2020-11-17 Thread SFR0815
Thank you. We did not have an issue with the error messages, though. The issue is that are using parsesql quite a bit within our code and need to get threads running. This breaks because we can't get renderSQL gcsafe. Any idea on how we could get rendersql (resp. parsesql) gcsafe?