Re: msgpack unresolved question

2012-11-03 Thread Masahiro Nakagawa
Hi Dan, Sorry for the delay. Your mail is referred to as spam in Gmail... I also got same error in compare_json.d, and I agree with Jesse. "pragma(msg, typeof(via.map.length));" returns 'ulong' during compilation. But the linker error occurred in the runtime. Now, I have no idea to resolve i

Re: Miscellaneous question regarding std.container?

2012-11-03 Thread Jonathan M Davis
On Saturday, November 03, 2012 19:38:13 Too Embarrassed To Say wrote: > The std.container starts off with container primitives. Does this > mean that all containers should support all these primitives? > Because I could never get c.length to work for a simple SList. They're a list of common operat

Runtime.unloadLibrary does not return

2012-11-03 Thread cal
Following the D win32 dll example (http://dlang.org/dll.html), I created a d dll with a simple exported function, which i then dynamically load and call (just like the example). This works fine, however Runtime.unloadLibrary does not return. I do however get the "DLL_PROCESS_DETACH" message, so

Re: Miscellaneous question regarding std.container?

2012-11-03 Thread Tobias Pankrath
On Saturday, 3 November 2012 at 18:38:14 UTC, Too Embarrassed To Say wrote: The std.container starts off with container primitives. Does this mean that all containers should support all these primitives? Because I could never get c.length to work for a simple SList. That is a complete list o

Miscellaneous question regarding std.container?

2012-11-03 Thread Too Embarrassed To Say
The std.container starts off with container primitives. Does this mean that all containers should support all these primitives? Because I could never get c.length to work for a simple SList. Are there formal definitions for U and Stuff like in (U)(U[] values...) and (string op, Stuff)(Stuff

Re: Derelict3: can't load a shared library

2012-11-03 Thread Andrey
I don't really understand where does that "libsfml-window.so.2" string come from. The file is 100% fully fledget .so shared library, not a symlink. Maybe it tries to follow default system (env) path instead of checking local lib dir. :-(

Re: Check/Compare a value using "in"

2012-11-03 Thread MattCoder
Hi, I would like to say thanks to "Adam D. Ruppe" and "Ali Çehreli", since they answered straight to the point! Thanks again, Matheus.