json

Create a convertor container with data source being json document.

  1. auto json(JSONValue value, PropertyAccessor!JSONValue accessor, TypeGuesser!JSONValue guesser, RCIAllocator allocator)
    json
    (
    JSONValue value
    ,,,
    RCIAllocator allocator = theAllocator
    )
  2. auto json(JSONValue value, TypeGuesser!JSONValue guesser, RCIAllocator allocator)
  3. auto json(JSONValue value, RCIAllocator allocator)
  4. auto json(RCIAllocator allocator)
  5. auto json(string pathOrData, bool returnEmpty)

Parameters

value JSONValue

source of data for container to use to construct components.

accessor PropertyAccessor!JSONValue

property accessing logic

guesser TypeGuesser!JSONValue

type guesser based on held json value

allocator RCIAllocator

allocator used to allocate converted values

Return Value

Type: auto

JsonConvertorContainer

Meta