Basically, I want a function I can call which lets me iterate in a bouncing-loop between a range of numbers by a specified increment. I've tried way complex solutions with many conditionals but it seems to me this should really be a simple math one-liner no?
I'm having a bit of trouble formulating my question so here is some pseudo coffescript to better explain my goals.
# Pseudo Coffeescript class
Class OscillatingIterator
constructor: ( low, high, increment )->
this.low = low
this.high = high
this.i = increment
iter: ->
### can haz magical math code plz? ###
# Usage
oi = new OscillatingIterator( 1, 5 , 1 )
# outputs
oi.iter() #=> 1
oi.iter() #=> 2
oi.iter() #=> 3
oi.iter() #=> 4
oi.iter() #=> 5
oi.iter() #=> 4
oi.iter() #=> 3
oi.iter() #=> 2
oi.iter() #=> 1
oi.iter() #=> 2
oi.iter() #=> 3
oi.iter() #=> 4
oi.iter() #=> 5
oi.iter() #=> 4
oi.iter() #=> ...