Given RcppSimdJson:::..deserialize_json() can replicate the behaviour of jsonify::from_json(), should I include RcppSimdJson as a LinkingTo, and use it if the end-user's hardware is up to it?
A wider question for @eddelbuettel & @knapply :
Do you think it's worth consolodating these libraries into one R package, which will automatically call either the simdjson or rapidjson .h code depending on the user's hardware?
Then there will only be one package which does both the from_json() and to_json()
Given
RcppSimdJson:::..deserialize_json()can replicate the behaviour ofjsonify::from_json(), should I includeRcppSimdJsonas aLinkingTo, and use it if the end-user's hardware is up to it?A wider question for @eddelbuettel & @knapply :
Do you think it's worth consolodating these libraries into one R package, which will automatically call either the
simdjsonorrapidjson.h code depending on the user's hardware?Then there will only be one package which does both the
from_json()andto_json()