lib/trema/monkey_patch/integer/base_conversions.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Trema
  module MonkeyPatch
    module Integer
      # to_hex etc.
      module BaseConversions
        def to_hex
          format '%#x', self
        end
      end
    end
  end
end