Sha256: 7760fc72eb60f4698cb2a3f48b20a27569efd226c7b6acac5d79ff0f6953b43c

Contents?: true

Size: 332 Bytes

Versions: 1

Compression:

Stored size: 332 Bytes

Contents

module Polyfill
  module V2_4
    module Numeric
      module InfiniteQ
        module Method
          def infinite?
            nil
          end if RUBY_VERSION < '2.4.0'
        end

        if RUBY_VERSION < '2.4.0'
          refine ::Numeric do
            include Method
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
polyfill-0.2.0 lib/polyfill/v2_4/numeric/infinite_q.rb