예제 #1
0
파일: tops.go 프로젝트: Comdex/tasty
func capper(v float64, m model.DataModel) float64 {
	if v > m.MaxPreferenceValue() {
		v = m.MaxPreferenceValue()
	} else if v < m.MinPreferenceValue() {
		v = m.MinPreferenceValue()
	}
	return v
}