// False positive guard: small, single-purpose production functions that stay
// well under the threshold must not be flagged, even though the file defines
// several of them.
pubfnadd(a:i64, b:i64)->i64{
a + b
}pubfnsub(a:i64, b:i64)->i64{
a - b
}pubfnmul(a:i64, b:i64)->i64{
a * b
}pubfnnegate(value:i64)->i64{-value
}