www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - [yajl-d] hello world with json arrays

reply "Jack" <Jackoz530 gmail.com> writes:
Disclaimer: Don't eat me.

I was just wondering to those who are experienced in using yajl-d 
to show me the proper implementation of using it with arrays.
So far this is what I understand from parsing Json Objects:

 class random{
 private string foo;
 private string bar;
}
void main(string [] args){
random rand = decode!random(to!string(read("json_file.json")));
//do stuff
Now I'm just wondering how can I implement it with Json arrays. Just some information or a place to start with is all I ask. Thank you.
Oct 11 2014
parent "Jack" <Jackoz530 gmail.com> writes:
On Sunday, 12 October 2014 at 04:17:42 UTC, Jack wrote:
 Disclaimer: Don't eat me.

 I was just wondering to those who are experienced in using 
 yajl-d to show me the proper implementation of using it with 
 arrays.
 So far this is what I understand from parsing Json Objects:

 class random{
 private string foo;
 private string bar;
}
void main(string [] args){
random rand = decode!random(to!string(read("json_file.json")));
//do stuff
Now I'm just wondering how can I implement it with Json arrays. Just some information or a place to start with is all I ask. Thank you.
Nvm for this. I found a code snippet from sir Ali that suited the job. http://forum.dlang.org/thread/jkndf7$ma3$1 digitalmars.com
Oct 12 2014