MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / String

Method String

projects/Go/proto/protoex/Order.go:32–39  ·  view source on GitHub ↗

Convert Order flags key to string

()

Source from the content-addressed store, hash-verified

30
31// Convert Order flags key to string
32func (k *OrderKey) String() string {
33 var sb strings.Builder
34 sb.WriteString("OrderKey(")
35 sb.WriteString("id=")
36 sb.WriteString(strconv.FormatInt(int64(k.Id), 10))
37 sb.WriteString(")")
38 return sb.String()
39}
40
41// Order struct
42type Order struct {

Callers

nothing calls this directly

Calls 1

StringMethod · 0.45

Tested by

no test coverage detected