Deserializing to double using: ``` ryml::NodeRef node = tree["key"]; double value; node >> value; ``` The following two cases behave unexpectedly: - When the key is followed by no value it gives a segmentation fault - When the key is a number with a letter in a position that is not the first it returns 0 instead of giving an error.