# File lib/safe_yaml/parse/hexadecimal.rb, line 6
      def self.value(value)
        # This is safe to do since we already validated the value.
        return Integer(value.gsub(/_/, ""))
      end