On 2006-03-18, Aaron Denney <[EMAIL PROTECTED]> wrote: > class ArithmeticSequence a where > stepFrom :: a -> [a] -- [n..] > stepFromBy :: a -> a -> [a] -- [n,n'..] > stepFromTo :: a -> a -> [a] -- [n..m] > stepFromByTo :: a -> a -> a -> [a] -- [n,n'..m]
Whoops, it was a big thinko to change "Then" to "By" here. These should be stepFromThenTo, etc. -- Aaron Denney -><- _______________________________________________ Haskell-prime mailing list [email protected] http://haskell.org/mailman/listinfo/haskell-prime
