qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 0/3] Extract non-QDicts in qdict_array_split()


From: Kevin Wolf
Subject: Re: [Qemu-devel] [PATCH 0/3] Extract non-QDicts in qdict_array_split()
Date: Fri, 21 Feb 2014 22:17:32 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

Am 21.02.2014 um 19:11 hat Max Reitz geschrieben:
> Currently, qdict_array_split() splits a QDict like
>   { "0.a": 42, "1": 23, "2.b": 84 }
> into the QList
>   [ { "a": 42 } ]
> with the QDict still being
>   { "1": 23, "2.b": 84 }
> 
> However, it makes more sense to create the QList
>   [ { "a": 42 }, 23, { "b": 84 } ]
> and having emptied the QDict.
> 
> This is implemented by this series.

Thanks, applied to the block branch.

Kevin



reply via email to

[Prev in Thread] Current Thread [Next in Thread]