Function JSONOutputRange.put

Writes a single JSON primitive to the destination character range.

void put(String) (
  JSONParserNode!String node
);

void put(String) (
  JSONToken!String token
);

void put (
  typeof(null)
);

void put (
  bool value
);

void put (
  long value
);

void put (
  BigInt value
);

void put (
  double value
);

void put(String) (
  JSONString!String value
);

void put (
  string value
);