MCPcopy Create free account
hub / github.com/cockroachdb/errors / reverseExceptionOrder

Function reverseExceptionOrder

report/report.go:402–406  ·  view source on GitHub ↗
(ex []sentry.Exception)

Source from the content-addressed store, hash-verified

400}
401
402func reverseExceptionOrder(ex []sentry.Exception) {
403 for i := 0; i < len(ex)/2; i++ {
404 ex[i], ex[len(ex)-i-1] = ex[len(ex)-i-1], ex[i]
405 }
406}
407
408func visitAllMulti(err error, f func(error)) {
409 f(err)

Callers 1

BuildSentryReportFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…