MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / bytesToHexString

Function bytesToHexString

client/utils.go:199–207  ·  view source on GitHub ↗
(input []byte)

Source from the content-addressed store, hash-verified

197}
198
199func bytesToHexString(input []byte) string {
200 hexString := "0x"
201 if input != nil {
202 for _, b := range input {
203 hexString += fmt.Sprintf("%02x", b)
204 }
205 }
206 return hexString
207}
208
209func DateToInt32(localDate time.Time) (int32, error) {
210 if localDate.IsZero() {

Callers 3

Test_bytesToHexStringFunction · 0.85
GetTextMethod · 0.85

Calls

no outgoing calls

Tested by 1

Test_bytesToHexStringFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…