parseTrustedJSONFile

Load a file as JSON text that is considered 100% correct. No checks will be performed, not even if you try to read a number as a string.

  1. auto parseTrustedJSONFile(char[] fname)
    parseTrustedJSONFile
    (
    uint vl = trustedSource
    )
    (
    in char[] fname
    )
  2. auto parseTrustedJSONFile(ubyte[] fname)

Parameters

fname char[]

The file name to load.

Return Value

Type: auto

A JSON file object exposing the Json API.

Meta