... I think you are wrong, and that order does not matter when it comes to objects, though the JSON RFC is characteristically silent on the point. JSON objects...
Interesting, internally they use a custom container, but has named access time of O(n) so unordered comparison would end up being arithmetic sum of n. I...
... An object is an unordered collection of zero or more name/value pairs, where a name is a string and a value is a string, number, boolean, null, object, or...
... Touche. And thanks. -- [W]hen I wrote it I was more than a little John Cowan febrile with foodpoisoning from an antique carrot...
1928
Jose F. Morales
jfran@...
Oct 18, 2012 6:47 am
Dear all, I am not really sure if this is the right place to ask for this, but we recently introduced a JSON encoding/decoding library in Ciao ...
1929
Jose F. Morales
jfran@...
Oct 23, 2012 2:01 pm
Dear all, Thank you very much for including the "Ciao JSON encoder and decoder" under the Prolog section. As a last request, we are wondering if we could have...
My understanding is that implementations are only to be listed once. If they were listed twice for languages that were (near-)supersets of other languages, all...
1934
Jose F. Morales
jfran@...
Oct 28, 2012 1:50 pm
Thank you for the explanation. In that case, it is much more precise if it appears just as Ciao. This version of the library will definitely not run as vanilla...
1935
Laurent Parenteau
laurent.parenteau@...
Nov 16, 2012 5:58 am
Dear all, Sorry if this isn't the right place for this, but I just published a JSON encoder/decoder for the M language. Could it be possible to add it to the ...
Hello, I'd like to propose adding a new python JSON package http://pypi.python.org/pypi/metamagic.json It's key features are: - output is 100% to the JSON spec...
1937
Andrew Faulds
ajf@...
Dec 20, 2012 12:41 pm
Eh? Why not use the standard Python JSON API (json) and wrap the built-in JS support (JSON)! Andrew Faulds http://ajf.me/ lesnklesnik <yselivanov@...>...
Let me know if there is a better place to send this recommendation. I looked for another email address on json.org to send suggestions, but didn't notice...
Hello. I am thinking of using JSON for storing the data produced by my program. As I was reading through the website (json.org) I notice that the specification...
From RFC 4672 http://www.ietf.org/rfc/rfc4627.txt?number=4627 To escape an extended character that is not in the Basic Multilingual Plane, the character is...
... Yes, you can put post-BMP codepoints directly as part of the string literals. If there are control characters outside of the BMP in your text they could...
... It can be represented either as the actual character, 4 bytes in any of UTF-8, UTF-16, or UTF-32; or else as two consecutive ASCII escapes: "\uD80492;uDC05"....
JavaScript, Java, and many other languages, were developed at a time when Unicode was going to be a 16-bit character set. Unicode later grew into a 21-bit...
There's some contradiction in the json RFC. If the encoding 'shall be Unicode' and default is UTF-8 as is stated, then ALL normal planes, including those ...
... That's right. However, escapes are handy for representing stray Unicode characters that aren't easy to type, just as in HTML or XML. Unlike those...
Hello people and thanks for your responses. I hope I understand correctly that compatibility with JavaScript and the ECMAScript standard dictates that it would...
Hello, I have released new versions of my Lua module dkjson and changed the URL. The new URL would be <http://dkolf.de/src/dkjson-lua.fsl/> and I was told...
Hi Douglas and fellow JSON-lovers, Thank you for posting the JSON API I made for LabVIEW last year on JSON.org. I wanted to fix the name of the toolkit as...
Hi, We’ve released the ujson4c decoder, based on UltraJSON to which it adds a more painless API for robust and performant day to day C/C++ JSON decoding ...
I've just released a JSON decoder for Fortran that is built on top of YAJL. The YAJL-Fort project page is http://sourceforge.net/projects/yajl-fort/ It looks...
NXJSON is full-featured yet very small (~400 lines of code) JSON parser, which has easy to use API. Features Parses JSON from null-terminated string Easy to...
Though very practical and desired by many, comments are not supported by JSON. To prevent compatibility issues in the future, it may be better to be consistent...