Help on asdf json module
ikod
igor.khasilev at gmail.com
Sun Oct 25 07:11:15 UTC 2020
On Sunday, 25 October 2020 at 06:05:27 UTC, Vino wrote:
> Hi All,
>
> Currently we are testing various json module such as
> "std.json, std_data_json, vibe.data.json and asdf", the below
> code works perfectely while use "std_data_json or
> vibe.data.json" but not working as expected when we use "asdf"
> and throwing the below error, hence request your help on the
> same.
>
> Error:
>
> source/app.d(12,2): Error: invalid foreach aggregate
> jv.opIndex(["items"][]), define opApply(), range primitives, or
> use .tupleof
Maybe library author didn't implement opApply, so you have to
iterate using range primitives empty, front, popFront, or handle
data using algorithms.
You can check examples on the project page
https://github.com/libmir/asdf
More information about the Digitalmars-d-learn
mailing list