Sha256: a94b3992f0c04fcc92b6b91e637b8dc1f9b8eba26972fb0af818639be86ff1df
Contents?: true
Size: 321 Bytes
Versions: 4
Compression:
Stored size: 321 Bytes
Contents
# Copyright (c) 2024 Jerome Arbez-Gindre # frozen_string_literal: true if RUBY_VERSION < '3.0' # Ruby 2.7 do not implement join for Set class Set # @param args [String] the separator (default: '') # @return [String] join value of the set elements def join(*args) to_a.join(*args) end end end
Version data entries
4 entries across 4 versions & 1 rubygems