MCPcopy Index your code
hub / github.com/CovenantSQL/CovenantSQL / min

Function min

cmd/cql-fuse/block.go:45–50  ·  view source on GitHub ↗

128KB

(a, b uint64)

Source from the content-addressed store, hash-verified

43const BlockSize = 128 << 10 // 128KB
44
45func min(a, b uint64) uint64 {
46 if a < b {
47 return a
48 }
49 return b
50}
51
52// blockRange describes a range of blocks.
53// If the first and last block are the same, the effective data range

Callers 3

ReadMethod · 0.85
newBlockRangeFunction · 0.85
writeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected