method
    
    weeknum
  
      v1_9_2_180 - 
      Show latest stable
 - 
    0 notes - 
    Class: DateTime
    
  
  
- 1_8_6_287 (0)
 - 1_8_7_72 (0)
 - 1_8_7_330 (0)
 - 1_9_1_378 (0)
 - 1_9_2_180 (0)
 - 1_9_3_125
 - 1_9_3_392
 - 2_1_10
 - 2_2_9
 - 2_4_6
 - 2_5_5
 - 2_6_3 (0)
 - What's this?
 
weeknum(y=-4712, w=0, d=1, f=0, h=0, min=0, s=0, of=0, sg=ITALY)
  private
  
    Hide source    
    
      
  
# File lib/date.rb, line 1657 def self.weeknum(y=-4712, w=0, d=1, f=0, h=0, min=0, s=0, of=0, sg=ITALY) # :nodoc: unless (jd = _valid_weeknum?(y, w, d, f, sg)) && (fr = _valid_time?(h, min, s)) raise ArgumentError, 'invalid date' end if String === of of = Rational(zone_to_diff(of) || 0, 86400) end new!(jd_to_ajd(jd, fr, of), of, sg) end

  
  
  
  