Conversation

Also the direct approach of matching and using ? looks cleaner in Rust and formats better than using monadic combinators. Sometimes they do help, but I just tend to use them more sparingly these days.
1
Thanks! The bit w.r.t. using `match` to avoid `**` is nice. W.r.t. some of the others I started writing it that way then thought better of it, or couldn't resist golfing :)
1
1
(W.r.t. variants I think fully-qualified is definitely better for a serious codebase, but for gists like this it's just noise. Either that or I'm too used to Haskell atm.)
1
Ah, I found another way: writing e.g. `Term::clone(&term)` and then it's both clear which thing I'm expecting to clone, and deref coercions can kick in so I don't need to count out the *s.
1
2
Or your concern was RC cycles rather than whether it'd compile at all? I'd conjecture there'd only be cycles if the object code itself has cyclic references. If you need to support those, what about pulling in Manish's Gc<T>? 👼
2
1
(What kind of fixpoints / what for? Maybe you could use the Y combinator which IIRC is self-application without cycles in the heap?)
1
1
I also think you could detect the cycles and set up the strongly-connected components accordingly on the memory/RC side (I don't know if you can do this with plain Rc or you need to extend it?), but this is a long-standing conjecture of mine and I don't know if anyone's done it.
1
1
Replying to
I'm not sure that Weak would work - it's not the same thing as a SCC sharing a 'single reference count'. (My reasoning about this is out of cache but that was what I concluded last time iirc.)
1