mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
Small adjustment
This commit is contained in:
@ -14,6 +14,14 @@ func MaxInt(x, y int) int {
|
||||
return x
|
||||
}
|
||||
|
||||
func MinMaxInt(x, y int) (int,int) {
|
||||
if x < y {
|
||||
return x,y
|
||||
}
|
||||
return y,x
|
||||
}
|
||||
|
||||
|
||||
func MinUInt16(x, y uint16) uint16 {
|
||||
if x < y {
|
||||
return x
|
||||
|
Reference in New Issue
Block a user