MCPcopy Create free account
hub / github.com/codehamr/codehamr / PackResult

Struct PackResult

internal/ctx/ctx.go:123–125  ·  view source on GitHub ↗

PackResult records what Pack kept: the packed messages.

Source from the content-addressed store, hash-verified

121// runeBoundaryUp walks i right to a rune start so out[i:] never starts
122// mid-sequence. Safe for i <= 0.
123func runeBoundaryUp(out string, i int) int {
124 if i <= 0 {
125 return 0
126 }
127 for i < len(out) && !utf8.RuneStart(out[i]) {
128 i++

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected