Type char has from_digit() and from_u32() to get char from a digit or from u32 , but where are the inverse functions for integer types (all of them)?
i.e. I expected to see some functions uN :: from _ {char | digit} () and iN :: from _ {char | digit} () (where N is 8, 16, 32, 64 or size) for symmetry, but apparently they do not exist.
source share