[Feature Request] itoh() Integer to hex string function #3105
Labels
feature request
New feature or request
libcudf
Affects libcudf (C++/CUDA) code.
strings
strings issues (C++ and Python)
In custrings, currently there is
htoi
supported. It will be nice to supportstoh
where integers are in the form of strings and the output is a hex equivalent of the numbers. Currently the only way to convert a string/number to hex is copying to host memory as we don't have .apply operations with custrings.Context/Use case: I'm using custrings to convert IPv4 addresses to IPv6. So
htoi
is really helpful in going from IPv6 to IPv4, but to go from IPv4 to IPv6 we will have to perform hex conversion on host cpu, that's why this feature request.The text was updated successfully, but these errors were encountered: