Actions
Feature #14550
openSupport keyword arguments with Date#step
Feature #14550:
Support keyword arguments with Date#step
Status:
Open
Assignee:
-
Target version:
-
Description
How about supporting keyword arguments with Date#step like Numeric#step?
from = Date.new(2018, 1, 1)
to = Date.new(2018, 2, 1)
from.step(to: to, by: 3).to_a
I expected that this is already supported.
But not.
Files
Actions