func encoding/json.Marshal
19 uses
encoding/json (current package)
encode.go#L158: func Marshal(v any) ([]byte, error) {
encode.go#L175: b, err := Marshal(v)
github.com/gotd/td/session
session.go#L150: buf, err := json.Marshal(v)
go.opentelemetry.io/otel/attribute
set.go#L404: return json.Marshal(l.equivalent.iface)
value.go#L269: return json.Marshal(jsonVal)
go.opentelemetry.io/otel/trace
trace.go#L66: return json.Marshal(t.String())
trace.go#L91: return json.Marshal(s.String())
trace.go#L179: return json.Marshal(tf.String())
trace.go#L332: return json.Marshal(SpanContextConfig{
tracestate.go#L149: return json.Marshal(ts.String())
go.uber.org/atomic
bool.go#L77: return json.Marshal(x.Load())
duration.go#L78: return json.Marshal(x.Load())
float32.go#L66: return json.Marshal(x.Load())
float64.go#L66: return json.Marshal(x.Load())
int32.go#L92: return json.Marshal(i.Load())
int64.go#L92: return json.Marshal(i.Load())
uint32.go#L92: return json.Marshal(i.Load())
uint64.go#L92: return json.Marshal(i.Load())
uintptr.go#L92: return json.Marshal(i.Load())
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |