MCPcopy Create free account
hub / github.com/apache/arrow / ascii_utf8

Function ascii_utf8

cpp/src/gandiva/precompiled/string_ops.cc:1407–1413  ·  view source on GitHub ↗

Returns the numeric value of the first character of str.

Source from the content-addressed store, hash-verified

1405
1406// Returns the numeric value of the first character of str.
1407GANDIVA_EXPORT
1408gdv_int32 ascii_utf8(const char* data, gdv_int32 data_len) {
1409 if (data_len == 0) {
1410 return 0;
1411 }
1412 return static_cast<gdv_int32>(static_cast<signed char>(data[0]));
1413}
1414
1415// Returns the ASCII character having the binary equivalent to A.
1416// If A is larger than 256 the result is equivalent to chr(A % 256).

Callers 1

TESTFunction · 0.85

Calls

no outgoing calls

Tested by 1

TESTFunction · 0.68