OT Adam D Ruppe's web stuff
Adam D. Ruppe via Digitalmars-d
digitalmars-d at puremagic.com
Wed Sep 17 05:42:25 PDT 2014
On Wednesday, 17 September 2014 at 04:57:05 UTC, Joel wrote:
> Is there an easier way to to think out symbol clashes?
Since most of dom.d's functionality is inside the Document and
other classes, you can probably get you code to compile most
easily with a selective import:
import arsd.dom : Document, Element, Form, Link;
or something like that. You might not even be using Form and
Link. Then since the rest of the functions used are methods of
those classes, you don't need to list them individually, they'll
just work, and you didn't import the Event class so it should be
like it doesn't even exist,
More information about the Digitalmars-d
mailing list