Sha256: 752a6445d647a5852785c1c9eff68a8b11c782d49ba25233639416fa9dec79c6
Contents?: true
Size: 384 Bytes
Versions: 7343
Compression:
Stored size: 384 Bytes
Contents
module RSpec module Core # @private module FlatMap if [].respond_to?(:flat_map) def flat_map(array, &block) array.flat_map(&block) end else # for 1.8.7 # :nocov: def flat_map(array, &block) array.map(&block).flatten(1) end # :nocov: end module_function :flat_map end end end
Version data entries
7,343 entries across 7,261 versions & 126 rubygems