Jonathan M Davis
Jonathan M Davis
dxml does have basic DOM support: http://jmdavisprog.com/docs/dxml/0.4.0/dxml_dom.html However, std.experimental.xml was certainly trying to do more than dxml does (e.g. IIRC, it was trying to support the doctype section, and dxml...
Thanks. This seems like the right approach and is what I would have expected.
> > @atilaneves AFAIK a type sequence is a type. So without an implementation of this, do you think it's better to have a special case in the type system,...
> A problem showing up repeatedly is __cmp() should have const parameters, not mutable ones. It's templated so that it can work with both `const` and mutable objects, and it...
> @jmdavis the parameters must be const, not just templated to take either. Dip1021 looks to see if two mutable arguments are passed to __cmp(), and fails it if it...
> __cmp can cast away const in its call to opCmp. > > (Even if not using the borrow checker, the rule of only one mutable reference to the same...
> > If a class has a mutable opCmp, it's allowed to mutate its state, so wouldn't it then be violating the type system because of what __cmp is doing?...
> @atilaneves the problem is that Object.opCmp takes mutable parameters, and a const class object cannot be passed to it. The same problem exists for Object.toString(), Object.toHash(), and Object.opEquals(). @andralex...
https://github.com/DuncanWasHere/blender_niftools_addon/releases has the releases for DuncanWasHere's fork of blender_niftools_addon. So, if you have a problem with one of those releases, you should report it to that repo, not this one....
_Thank you_ for working on this.