Changeset 20004 for lang/haskell/nario/Util.hs
- Timestamp:
- 09/27/08 10:16:04 (5 years ago)
- Files:
-
- 1 modified
-
lang/haskell/nario/Util.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/haskell/nario/Util.hs
r19999 r20004 15 15 -- もとから範囲外だったときはそれ以上遠ざからないように 16 16 rangeadd x d x0 x1 17 | d > 0 = if x < x1 then min (x + d) x1 else x18 | d < 0 = if x > x0 then max (x + d) x0 else x17 | d > 0 && x < x1 = min (x + d) x1 18 | d < 0 && x > x0 = max (x + d) x0 19 19 | otherwise = x 20 20
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)