
18 Mar
2006
18 Mar
'06
noon
On 2006-03-18, Aaron Denney
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 -><-