# File lib/eymiha/util/envelope.rb, line 109
    def contains?(value)
      if value.kind_of? Envelope
        (contains? value.high) && (contains? value.low)
      else
        begin
          (value >= low) && (value <= high)
        rescue
          raise_no_compare value
        end
      end
    end