Arne Döring

Results 71 comments of Arne Döring

can you summarize what you changed?

Well I don't think that that Nim offers anything to ensure that Interface objects will never outlive the object it is originating from. I think creating interface objects in local...

Well to be honest I haven't used this kind of interfaces outside of Go, and in go they also need to substitute generics, otherwise I would have noticed this change...

Yea I had this problem as well.

You can provide a custom name for imported modules. For example ``import m "lib/math"`` lets you use ``math.Sin`` under the now different name ``m.Sin``. https://golang.org/ref/spec#Import_declarations

Then what exactly do you mean with "conflicts"? And technically no, go does not "allow git urls", the details are a bit different. But it certainly does allow github urls...

> Really? It explicitly only allows github? What if I host my package on Bitbucket/gitlab, am I screwed then? I _never_ said it **only** allows github. https://golang.org/cmd/go/#hdr-Remote_import_paths

Optional dependencies would be a great benefit. Simple example are situations where multiple backends are avaiable for a common interaface, some of them commecial. You don't want to have them...

This seems to be an issue for ``lastpass`` not nimforum issue.

I don't know, how clang format works at the moment, but I think it just replaces the entire buffer with the output of clang-format. I think a simple way to...