Changeset 4870 for src/Pugs/Internals.hs
- Timestamp:
- 06/20/05 16:10:43 (4 years ago)
- svk:copy_cache_prev:
- 6641
- Files:
-
- 1 modified
-
src/Pugs/Internals.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Internals.hs
r4866 r4870 154 154 155 155 split_n :: (Eq a) => [a] -> [a] -> Int -> [[a]] 156 split_n [] _ n= internalError "splitting by an empty list"156 split_n [] _ _ = internalError "splitting by an empty list" 157 157 split_n sep str n 158 158 | n == 1 = [str]
