method

find_ldom

v1_9_1_378 - Show latest stable - Class: Date
find_ldom(y, m, sg)
public

No documentation available.

# File lib/date.rb, line 358
    def find_ldom(y, m, sg) # :nodoc:
      j = nil
      31.downto(1) do |d|
        break if j = _valid_civil?(y, m, d, sg)
      end
      j
    end