[DOC] Time uses the proleptic Gregorian calendar.

This commit is contained in:
Tanaka Akira 2024-06-07 00:25:38 +09:00
Родитель 78d7b470ec
Коммит 9f469ad187
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -63,6 +63,10 @@
# due to the C types "time_t" and "struct tm". # due to the C types "time_t" and "struct tm".
# If that limit is exceeded, Ruby extrapolates the localtime function. # If that limit is exceeded, Ruby extrapolates the localtime function.
# #
# The Time class always uses the Gregorian calendar.
# I.e. the proleptic Gregorian calendar is used.
# Other calendars, such as Julian calendar, are not supported.
#
# "time_t" can represent 1901-12-14 to 2038-01-19 if it is 32 bit signed integer, # "time_t" can represent 1901-12-14 to 2038-01-19 if it is 32 bit signed integer,
# -292277022657-01-27 to 292277026596-12-05 if it is 64 bit signed integer. # -292277022657-01-27 to 292277026596-12-05 if it is 64 bit signed integer.
# However "localtime" on some platforms doesn't supports negative time_t (before 1970). # However "localtime" on some platforms doesn't supports negative time_t (before 1970).