MCPcopy Create free account
hub / github.com/astercloud/aster / min

Function min

pkg/memory/provenance.go:267–272  ·  view source on GitHub ↗

min 返回两个 float64 中的较小值。

(a, b float64)

Source from the content-addressed store, hash-verified

265
266// min 返回两个 float64 中的较小值。
267func min(a, b float64) float64 {
268 if a < b {
269 return a
270 }
271 return b
272}

Callers 15

mergeProvenanceMethod · 0.70
CorroborateMethod · 0.70
ExecuteMethod · 0.50
checkDangerousCommandMethod · 0.50
RedactMethod · 0.50
CompressMethod · 0.50
CompressMethod · 0.50
CompressMethod · 0.50
generateSnippetFunction · 0.50
generateContextMethod · 0.50
enhanceQueryMethod · 0.50
ReadMethod · 0.50

Calls

no outgoing calls

Tested by 1

containsErrorMarkerFunction · 0.40