Sha256: e8209d83b6fe9d5067d548062b7f67f56d0b65a3792d69c9dfd49c1ecca0e550
Contents?: true
Size: 612 Bytes
Versions: 4
Compression:
Stored size: 612 Bytes
Contents
module SPNet # Keeps values at or above the given Limit. # # @author James Tunnell class LowerLimiter < Limiter attr_reader :limit, :inclusive def initialize limit, inclusive @limit = limit @inclusive = inclusive end # Limit the given value to be at or above @limit. Ignores the current_value parameter. def apply_limit value, current_value = nil if inclusive if value >= @limit return value else return @limit end else if value > @limit return value else return @limit + Float::EPSILON end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems