class Babeltrace2::BTIntegerRange

Public Instance Methods

include?(val) click to toggle source
# File lib/babeltrace2/integer-range-set.rb, line 20
def include?(val)
  lower <= val && upper >= val
end
value() click to toggle source
# File lib/babeltrace2/integer-range-set.rb, line 16
def value
  lower..upper
end