[#74190] [Ruby trunk Feature#12134] Comparison between `true` and `false` — duerst@...
Issue #12134 has been updated by Martin D端rst.
3 messages
2016/03/07
[#74269] Type systems for Ruby — Rob Blanco <ml@...>
Dear ruby-core,
5 messages
2016/03/10
[#74395] [Ruby trunk Feature#12142] Hash tables with open addressing — shyouhei@...
Issue #12142 has been updated by Shyouhei Urabe.
3 messages
2016/03/17
[ruby-core:74526] [Ruby trunk Feature#12211] introduce Date#first_of_month and Date#last_of_month
From:
zverok.offline@...
Date:
2016-03-24 08:36:28 UTC
List:
ruby-core #74526
Issue #12211 has been updated by Victor Shepelev.
IMHO, consistent approach would be "allow Date/Time to be rounded to any component", there are many uses for this. Maybe something like `ceil`/`floor`/`round` methods set with Symbol argument? Like `floor(:month)` and `ceil(:month)`?
----------------------------------------
Feature #12211: introduce Date#first_of_month and Date#last_of_month
https://bugs.ruby-lang.org/issues/12211#change-57651
* Author: Shunichi Arai
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
Proposes new methods Date#first_of_month and Date#last_of_month which can be very helpful in reporting applications which need the first and the last day of a month very frequently.
~~~
class Date
def first_of_month
Date.new(year, month, 1)
end
def last_of_month
next_month.first_of_month.prev_day
end
end
~~~
Current way to do it `Date.new(date.year, date.month, 1)` is not elegant and short enough for this simple and common operation.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>