In std.json is a function getchar() with this signature:dchar getChar(bool SkipWhitespace = false);
It looks like the signature (line 115) is: dchar getChar(bool SkipWhitespace = false)()Note the extra set of parens at the end, making the bool a template parameter.
