Artifact 1a240e526475b0472d837109e4fe8adabb80894d:
- File src/0dev.org/math/math.go — part of check-in [be5950faa4] at 2014-12-14 00:16:31 on branch trunk — Initial implementation of a diff program and required libraries (user: spaskalev, size: 238) [annotate] [blame] [check-ins using]
// Helper functions that really belong in the SDK or in a generic library... package math func MinInt(i1, i2 int) int { if i1 <= i2 { return i1 } return i2 } func MaxInt(i1, i2 int) int { if i1 >= i2 { return i1 } return i2 }