Open In App

Ruby | Time isdst function

Last Updated : 21 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Time#isdst(): isdst() is a Time class method which checks whether the time occurs during Daylight Saving Time in its time zone.

Syntax: Time.isdst()
Parameter: Time values
Return: true – if the time occurs during Daylight Saving Time in its time zone otherwise return false

Example #1 :  

Ruby




# Ruby code for Time.isdst() method
 
# declaring time
a = Time.new(2019)
 
# declaring time
b = Time.new(2019, 10)
 
# declaring time
c = Time.new(2019, 12, 31)
 
# Time
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
 
 
# isdst form
puts "Time a isdst form : #{a.isdst}\n\n"
puts "Time b isdst form : #{b.isdst}\n\n"
puts "Time c isdst form : #{c.isdst}\n\n"


Output : 

Time a : 2019-01-01 00:00:00 +0100

Time b : 2019-10-01 00:00:00 +0200

Time c : 2019-12-31 00:00:00 +0100



Time a isdst form : false

Time b isdst form : true

Time c isdst form : false

Example #2 : 

Ruby




# Ruby code for Time.isdst() method
 
# declaring time
a = Time.now
 
# declaring time
b = Time.new(1000, 10, 10)
 
# declaring time
c = Time.new(2020, 12)
 
# Time
puts "Time a : #{a}\n\n"
puts "Time b : #{b}\n\n"
puts "Time c : #{c}\n\n\n\n"
 
 
# isdst form
puts "Time a isdst form : #{a.isdst}\n\n"
puts "Time b isdst form : #{b.isdst}\n\n"
puts "Time c isdst form : #{c.isdst}\n\n"


Output : 

Time a : 2019-08-27 03:48:18 +0200

Time b : 1000-10-10 00:00:00 +0053

Time c : 2020-12-01 00:00:00 +0100



Time a isdst form : true

Time b isdst form : false

Time c isdst form : false

 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads