Actions
Feature #5970
openAdd Enumerable#join with same semantics as Array#join
Feature #5970:
Add Enumerable#join with same semantics as Array#join
Description
Currently, to join the elements of an Enumerable, you need to call #to_a on the Enumerable and then #join the result. With Enumerable#join one wouldn’t need need to create an intermediate Array.
Files
Actions