code-ruby 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/code +8 -5
- data/lib/code/concerns/shared.rb +102 -98
- data/lib/code/format.rb +23 -19
- data/lib/code/network.rb +23 -28
- data/lib/code/node/call.rb +9 -8
- data/lib/code/node/code.rb +1 -1
- data/lib/code/node/list.rb +10 -8
- data/lib/code/node/square_bracket.rb +4 -2
- data/lib/code/object/boolean.rb +13 -17
- data/lib/code/object/class.rb +32 -27
- data/lib/code/object/code.rb +2 -9
- data/lib/code/object/context.rb +4 -2
- data/lib/code/object/cryptography.rb +12 -6
- data/lib/code/object/date.rb +910 -449
- data/lib/code/object/decimal.rb +229 -856
- data/lib/code/object/dictionary.rb +113 -42
- data/lib/code/object/duration.rb +3 -7
- data/lib/code/object/function.rb +64 -40
- data/lib/code/object/global.rb +121 -208
- data/lib/code/object/html.rb +4 -2
- data/lib/code/object/http.rb +32 -26
- data/lib/code/object/ics.rb +2 -1
- data/lib/code/object/identifier_list.rb +16 -11
- data/lib/code/object/integer.rb +270 -942
- data/lib/code/object/json.rb +8 -3
- data/lib/code/object/list.rb +97 -109
- data/lib/code/object/nothing.rb +11 -11
- data/lib/code/object/number.rb +20 -10
- data/lib/code/object/parameter.rb +18 -9
- data/lib/code/object/range.rb +62 -108
- data/lib/code/object/smtp.rb +20 -12
- data/lib/code/object/string.rb +52 -28
- data/lib/code/object/super.rb +2 -1
- data/lib/code/object/time.rb +1146 -572
- data/lib/code/object/url.rb +4 -2
- data/lib/code/object.rb +119 -80
- data/lib/code/parser.rb +34 -32
- metadata +1 -1
data/lib/code/object/date.rb
CHANGED
|
@@ -5,7 +5,8 @@ class Code
|
|
|
5
5
|
class Date < Object
|
|
6
6
|
CLASS_DOCUMENTATION = {
|
|
7
7
|
name: "Date",
|
|
8
|
-
description:
|
|
8
|
+
description:
|
|
9
|
+
"represents a calendar date with date arithmetic and formatting.",
|
|
9
10
|
examples: [
|
|
10
11
|
"Date.today",
|
|
11
12
|
"Date.tomorrow > Date.today",
|
|
@@ -90,7 +91,8 @@ class Code
|
|
|
90
91
|
},
|
|
91
92
|
"after?" => {
|
|
92
93
|
name: "after?",
|
|
93
|
-
description:
|
|
94
|
+
description:
|
|
95
|
+
"returns whether the date is after another date or time.",
|
|
94
96
|
examples: [
|
|
95
97
|
"Date.new(\"2024-03-05\").after?(Date.new(\"2024-03-04\"))",
|
|
96
98
|
"Date.new(\"2024-03-05\").after?(Date.new(\"2024-03-06\"))",
|
|
@@ -99,7 +101,8 @@ class Code
|
|
|
99
101
|
},
|
|
100
102
|
"before?" => {
|
|
101
103
|
name: "before?",
|
|
102
|
-
description:
|
|
104
|
+
description:
|
|
105
|
+
"returns whether the date is before another date or time.",
|
|
103
106
|
examples: [
|
|
104
107
|
"Date.new(\"2024-03-05\").before?(Date.new(\"2024-03-06\"))",
|
|
105
108
|
"Date.new(\"2024-03-05\").before?(Date.new(\"2024-03-04\"))",
|
|
@@ -585,7 +588,8 @@ class Code
|
|
|
585
588
|
},
|
|
586
589
|
"africa_abidjan?" => {
|
|
587
590
|
name: "africa_abidjan?",
|
|
588
|
-
description:
|
|
591
|
+
description:
|
|
592
|
+
"returns whether the current time zone is africa/abidjan.",
|
|
589
593
|
examples: [
|
|
590
594
|
"Date.africa_abidjan?",
|
|
591
595
|
"Date.new(\"2024-03-05\").africa_abidjan?",
|
|
@@ -603,7 +607,8 @@ class Code
|
|
|
603
607
|
},
|
|
604
608
|
"africa_addis_ababa?" => {
|
|
605
609
|
name: "africa_addis_ababa?",
|
|
606
|
-
description:
|
|
610
|
+
description:
|
|
611
|
+
"returns whether the current time zone is africa/addis_ababa.",
|
|
607
612
|
examples: [
|
|
608
613
|
"Date.africa_addis_ababa?",
|
|
609
614
|
"Date.new(\"2024-03-05\").africa_addis_ababa?",
|
|
@@ -612,7 +617,8 @@ class Code
|
|
|
612
617
|
},
|
|
613
618
|
"africa_algiers?" => {
|
|
614
619
|
name: "africa_algiers?",
|
|
615
|
-
description:
|
|
620
|
+
description:
|
|
621
|
+
"returns whether the current time zone is africa/algiers.",
|
|
616
622
|
examples: [
|
|
617
623
|
"Date.africa_algiers?",
|
|
618
624
|
"Date.new(\"2024-03-05\").africa_algiers?",
|
|
@@ -621,7 +627,8 @@ class Code
|
|
|
621
627
|
},
|
|
622
628
|
"africa_asmara?" => {
|
|
623
629
|
name: "africa_asmara?",
|
|
624
|
-
description:
|
|
630
|
+
description:
|
|
631
|
+
"returns whether the current time zone is africa/asmara.",
|
|
625
632
|
examples: [
|
|
626
633
|
"Date.africa_asmara?",
|
|
627
634
|
"Date.new(\"2024-03-05\").africa_asmara?",
|
|
@@ -630,7 +637,8 @@ class Code
|
|
|
630
637
|
},
|
|
631
638
|
"africa_asmera?" => {
|
|
632
639
|
name: "africa_asmera?",
|
|
633
|
-
description:
|
|
640
|
+
description:
|
|
641
|
+
"returns whether the current time zone is africa/asmera.",
|
|
634
642
|
examples: [
|
|
635
643
|
"Date.africa_asmera?",
|
|
636
644
|
"Date.new(\"2024-03-05\").africa_asmera?",
|
|
@@ -639,7 +647,8 @@ class Code
|
|
|
639
647
|
},
|
|
640
648
|
"africa_bamako?" => {
|
|
641
649
|
name: "africa_bamako?",
|
|
642
|
-
description:
|
|
650
|
+
description:
|
|
651
|
+
"returns whether the current time zone is africa/bamako.",
|
|
643
652
|
examples: [
|
|
644
653
|
"Date.africa_bamako?",
|
|
645
654
|
"Date.new(\"2024-03-05\").africa_bamako?",
|
|
@@ -648,7 +657,8 @@ class Code
|
|
|
648
657
|
},
|
|
649
658
|
"africa_bangui?" => {
|
|
650
659
|
name: "africa_bangui?",
|
|
651
|
-
description:
|
|
660
|
+
description:
|
|
661
|
+
"returns whether the current time zone is africa/bangui.",
|
|
652
662
|
examples: [
|
|
653
663
|
"Date.africa_bangui?",
|
|
654
664
|
"Date.new(\"2024-03-05\").africa_bangui?",
|
|
@@ -657,7 +667,8 @@ class Code
|
|
|
657
667
|
},
|
|
658
668
|
"africa_banjul?" => {
|
|
659
669
|
name: "africa_banjul?",
|
|
660
|
-
description:
|
|
670
|
+
description:
|
|
671
|
+
"returns whether the current time zone is africa/banjul.",
|
|
661
672
|
examples: [
|
|
662
673
|
"Date.africa_banjul?",
|
|
663
674
|
"Date.new(\"2024-03-05\").africa_banjul?",
|
|
@@ -666,7 +677,8 @@ class Code
|
|
|
666
677
|
},
|
|
667
678
|
"africa_bissau?" => {
|
|
668
679
|
name: "africa_bissau?",
|
|
669
|
-
description:
|
|
680
|
+
description:
|
|
681
|
+
"returns whether the current time zone is africa/bissau.",
|
|
670
682
|
examples: [
|
|
671
683
|
"Date.africa_bissau?",
|
|
672
684
|
"Date.new(\"2024-03-05\").africa_bissau?",
|
|
@@ -675,7 +687,8 @@ class Code
|
|
|
675
687
|
},
|
|
676
688
|
"africa_blantyre?" => {
|
|
677
689
|
name: "africa_blantyre?",
|
|
678
|
-
description:
|
|
690
|
+
description:
|
|
691
|
+
"returns whether the current time zone is africa/blantyre.",
|
|
679
692
|
examples: [
|
|
680
693
|
"Date.africa_blantyre?",
|
|
681
694
|
"Date.new(\"2024-03-05\").africa_blantyre?",
|
|
@@ -684,7 +697,8 @@ class Code
|
|
|
684
697
|
},
|
|
685
698
|
"africa_brazzaville?" => {
|
|
686
699
|
name: "africa_brazzaville?",
|
|
687
|
-
description:
|
|
700
|
+
description:
|
|
701
|
+
"returns whether the current time zone is africa/brazzaville.",
|
|
688
702
|
examples: [
|
|
689
703
|
"Date.africa_brazzaville?",
|
|
690
704
|
"Date.new(\"2024-03-05\").africa_brazzaville?",
|
|
@@ -693,7 +707,8 @@ class Code
|
|
|
693
707
|
},
|
|
694
708
|
"africa_bujumbura?" => {
|
|
695
709
|
name: "africa_bujumbura?",
|
|
696
|
-
description:
|
|
710
|
+
description:
|
|
711
|
+
"returns whether the current time zone is africa/bujumbura.",
|
|
697
712
|
examples: [
|
|
698
713
|
"Date.africa_bujumbura?",
|
|
699
714
|
"Date.new(\"2024-03-05\").africa_bujumbura?",
|
|
@@ -711,7 +726,8 @@ class Code
|
|
|
711
726
|
},
|
|
712
727
|
"africa_casablanca?" => {
|
|
713
728
|
name: "africa_casablanca?",
|
|
714
|
-
description:
|
|
729
|
+
description:
|
|
730
|
+
"returns whether the current time zone is africa/casablanca.",
|
|
715
731
|
examples: [
|
|
716
732
|
"Date.africa_casablanca?",
|
|
717
733
|
"Date.new(\"2024-03-05\").africa_casablanca?",
|
|
@@ -729,7 +745,8 @@ class Code
|
|
|
729
745
|
},
|
|
730
746
|
"africa_conakry?" => {
|
|
731
747
|
name: "africa_conakry?",
|
|
732
|
-
description:
|
|
748
|
+
description:
|
|
749
|
+
"returns whether the current time zone is africa/conakry.",
|
|
733
750
|
examples: [
|
|
734
751
|
"Date.africa_conakry?",
|
|
735
752
|
"Date.new(\"2024-03-05\").africa_conakry?",
|
|
@@ -747,7 +764,8 @@ class Code
|
|
|
747
764
|
},
|
|
748
765
|
"africa_dar_es_salaam?" => {
|
|
749
766
|
name: "africa_dar_es_salaam?",
|
|
750
|
-
description:
|
|
767
|
+
description:
|
|
768
|
+
"returns whether the current time zone is africa/dar_es_salaam.",
|
|
751
769
|
examples: [
|
|
752
770
|
"Date.africa_dar_es_salaam?",
|
|
753
771
|
"Date.new(\"2024-03-05\").africa_dar_es_salaam?",
|
|
@@ -756,7 +774,8 @@ class Code
|
|
|
756
774
|
},
|
|
757
775
|
"africa_djibouti?" => {
|
|
758
776
|
name: "africa_djibouti?",
|
|
759
|
-
description:
|
|
777
|
+
description:
|
|
778
|
+
"returns whether the current time zone is africa/djibouti.",
|
|
760
779
|
examples: [
|
|
761
780
|
"Date.africa_djibouti?",
|
|
762
781
|
"Date.new(\"2024-03-05\").africa_djibouti?",
|
|
@@ -765,7 +784,8 @@ class Code
|
|
|
765
784
|
},
|
|
766
785
|
"africa_douala?" => {
|
|
767
786
|
name: "africa_douala?",
|
|
768
|
-
description:
|
|
787
|
+
description:
|
|
788
|
+
"returns whether the current time zone is africa/douala.",
|
|
769
789
|
examples: [
|
|
770
790
|
"Date.africa_douala?",
|
|
771
791
|
"Date.new(\"2024-03-05\").africa_douala?",
|
|
@@ -774,7 +794,8 @@ class Code
|
|
|
774
794
|
},
|
|
775
795
|
"africa_el_aaiun?" => {
|
|
776
796
|
name: "africa_el_aaiun?",
|
|
777
|
-
description:
|
|
797
|
+
description:
|
|
798
|
+
"returns whether the current time zone is africa/el_aaiun.",
|
|
778
799
|
examples: [
|
|
779
800
|
"Date.africa_el_aaiun?",
|
|
780
801
|
"Date.new(\"2024-03-05\").africa_el_aaiun?",
|
|
@@ -783,7 +804,8 @@ class Code
|
|
|
783
804
|
},
|
|
784
805
|
"africa_freetown?" => {
|
|
785
806
|
name: "africa_freetown?",
|
|
786
|
-
description:
|
|
807
|
+
description:
|
|
808
|
+
"returns whether the current time zone is africa/freetown.",
|
|
787
809
|
examples: [
|
|
788
810
|
"Date.africa_freetown?",
|
|
789
811
|
"Date.new(\"2024-03-05\").africa_freetown?",
|
|
@@ -792,7 +814,8 @@ class Code
|
|
|
792
814
|
},
|
|
793
815
|
"africa_gaborone?" => {
|
|
794
816
|
name: "africa_gaborone?",
|
|
795
|
-
description:
|
|
817
|
+
description:
|
|
818
|
+
"returns whether the current time zone is africa/gaborone.",
|
|
796
819
|
examples: [
|
|
797
820
|
"Date.africa_gaborone?",
|
|
798
821
|
"Date.new(\"2024-03-05\").africa_gaborone?",
|
|
@@ -801,7 +824,8 @@ class Code
|
|
|
801
824
|
},
|
|
802
825
|
"africa_harare?" => {
|
|
803
826
|
name: "africa_harare?",
|
|
804
|
-
description:
|
|
827
|
+
description:
|
|
828
|
+
"returns whether the current time zone is africa/harare.",
|
|
805
829
|
examples: [
|
|
806
830
|
"Date.africa_harare?",
|
|
807
831
|
"Date.new(\"2024-03-05\").africa_harare?",
|
|
@@ -810,7 +834,8 @@ class Code
|
|
|
810
834
|
},
|
|
811
835
|
"africa_johannesburg?" => {
|
|
812
836
|
name: "africa_johannesburg?",
|
|
813
|
-
description:
|
|
837
|
+
description:
|
|
838
|
+
"returns whether the current time zone is africa/johannesburg.",
|
|
814
839
|
examples: [
|
|
815
840
|
"Date.africa_johannesburg?",
|
|
816
841
|
"Date.new(\"2024-03-05\").africa_johannesburg?",
|
|
@@ -828,7 +853,8 @@ class Code
|
|
|
828
853
|
},
|
|
829
854
|
"africa_kampala?" => {
|
|
830
855
|
name: "africa_kampala?",
|
|
831
|
-
description:
|
|
856
|
+
description:
|
|
857
|
+
"returns whether the current time zone is africa/kampala.",
|
|
832
858
|
examples: [
|
|
833
859
|
"Date.africa_kampala?",
|
|
834
860
|
"Date.new(\"2024-03-05\").africa_kampala?",
|
|
@@ -837,7 +863,8 @@ class Code
|
|
|
837
863
|
},
|
|
838
864
|
"africa_khartoum?" => {
|
|
839
865
|
name: "africa_khartoum?",
|
|
840
|
-
description:
|
|
866
|
+
description:
|
|
867
|
+
"returns whether the current time zone is africa/khartoum.",
|
|
841
868
|
examples: [
|
|
842
869
|
"Date.africa_khartoum?",
|
|
843
870
|
"Date.new(\"2024-03-05\").africa_khartoum?",
|
|
@@ -846,7 +873,8 @@ class Code
|
|
|
846
873
|
},
|
|
847
874
|
"africa_kigali?" => {
|
|
848
875
|
name: "africa_kigali?",
|
|
849
|
-
description:
|
|
876
|
+
description:
|
|
877
|
+
"returns whether the current time zone is africa/kigali.",
|
|
850
878
|
examples: [
|
|
851
879
|
"Date.africa_kigali?",
|
|
852
880
|
"Date.new(\"2024-03-05\").africa_kigali?",
|
|
@@ -855,7 +883,8 @@ class Code
|
|
|
855
883
|
},
|
|
856
884
|
"africa_kinshasa?" => {
|
|
857
885
|
name: "africa_kinshasa?",
|
|
858
|
-
description:
|
|
886
|
+
description:
|
|
887
|
+
"returns whether the current time zone is africa/kinshasa.",
|
|
859
888
|
examples: [
|
|
860
889
|
"Date.africa_kinshasa?",
|
|
861
890
|
"Date.new(\"2024-03-05\").africa_kinshasa?",
|
|
@@ -873,7 +902,8 @@ class Code
|
|
|
873
902
|
},
|
|
874
903
|
"africa_libreville?" => {
|
|
875
904
|
name: "africa_libreville?",
|
|
876
|
-
description:
|
|
905
|
+
description:
|
|
906
|
+
"returns whether the current time zone is africa/libreville.",
|
|
877
907
|
examples: [
|
|
878
908
|
"Date.africa_libreville?",
|
|
879
909
|
"Date.new(\"2024-03-05\").africa_libreville?",
|
|
@@ -891,7 +921,8 @@ class Code
|
|
|
891
921
|
},
|
|
892
922
|
"africa_luanda?" => {
|
|
893
923
|
name: "africa_luanda?",
|
|
894
|
-
description:
|
|
924
|
+
description:
|
|
925
|
+
"returns whether the current time zone is africa/luanda.",
|
|
895
926
|
examples: [
|
|
896
927
|
"Date.africa_luanda?",
|
|
897
928
|
"Date.new(\"2024-03-05\").africa_luanda?",
|
|
@@ -900,7 +931,8 @@ class Code
|
|
|
900
931
|
},
|
|
901
932
|
"africa_lubumbashi?" => {
|
|
902
933
|
name: "africa_lubumbashi?",
|
|
903
|
-
description:
|
|
934
|
+
description:
|
|
935
|
+
"returns whether the current time zone is africa/lubumbashi.",
|
|
904
936
|
examples: [
|
|
905
937
|
"Date.africa_lubumbashi?",
|
|
906
938
|
"Date.new(\"2024-03-05\").africa_lubumbashi?",
|
|
@@ -909,7 +941,8 @@ class Code
|
|
|
909
941
|
},
|
|
910
942
|
"africa_lusaka?" => {
|
|
911
943
|
name: "africa_lusaka?",
|
|
912
|
-
description:
|
|
944
|
+
description:
|
|
945
|
+
"returns whether the current time zone is africa/lusaka.",
|
|
913
946
|
examples: [
|
|
914
947
|
"Date.africa_lusaka?",
|
|
915
948
|
"Date.new(\"2024-03-05\").africa_lusaka?",
|
|
@@ -918,7 +951,8 @@ class Code
|
|
|
918
951
|
},
|
|
919
952
|
"africa_malabo?" => {
|
|
920
953
|
name: "africa_malabo?",
|
|
921
|
-
description:
|
|
954
|
+
description:
|
|
955
|
+
"returns whether the current time zone is africa/malabo.",
|
|
922
956
|
examples: [
|
|
923
957
|
"Date.africa_malabo?",
|
|
924
958
|
"Date.new(\"2024-03-05\").africa_malabo?",
|
|
@@ -927,7 +961,8 @@ class Code
|
|
|
927
961
|
},
|
|
928
962
|
"africa_maputo?" => {
|
|
929
963
|
name: "africa_maputo?",
|
|
930
|
-
description:
|
|
964
|
+
description:
|
|
965
|
+
"returns whether the current time zone is africa/maputo.",
|
|
931
966
|
examples: [
|
|
932
967
|
"Date.africa_maputo?",
|
|
933
968
|
"Date.new(\"2024-03-05\").africa_maputo?",
|
|
@@ -936,7 +971,8 @@ class Code
|
|
|
936
971
|
},
|
|
937
972
|
"africa_maseru?" => {
|
|
938
973
|
name: "africa_maseru?",
|
|
939
|
-
description:
|
|
974
|
+
description:
|
|
975
|
+
"returns whether the current time zone is africa/maseru.",
|
|
940
976
|
examples: [
|
|
941
977
|
"Date.africa_maseru?",
|
|
942
978
|
"Date.new(\"2024-03-05\").africa_maseru?",
|
|
@@ -945,7 +981,8 @@ class Code
|
|
|
945
981
|
},
|
|
946
982
|
"africa_mbabane?" => {
|
|
947
983
|
name: "africa_mbabane?",
|
|
948
|
-
description:
|
|
984
|
+
description:
|
|
985
|
+
"returns whether the current time zone is africa/mbabane.",
|
|
949
986
|
examples: [
|
|
950
987
|
"Date.africa_mbabane?",
|
|
951
988
|
"Date.new(\"2024-03-05\").africa_mbabane?",
|
|
@@ -954,7 +991,8 @@ class Code
|
|
|
954
991
|
},
|
|
955
992
|
"africa_mogadishu?" => {
|
|
956
993
|
name: "africa_mogadishu?",
|
|
957
|
-
description:
|
|
994
|
+
description:
|
|
995
|
+
"returns whether the current time zone is africa/mogadishu.",
|
|
958
996
|
examples: [
|
|
959
997
|
"Date.africa_mogadishu?",
|
|
960
998
|
"Date.new(\"2024-03-05\").africa_mogadishu?",
|
|
@@ -963,7 +1001,8 @@ class Code
|
|
|
963
1001
|
},
|
|
964
1002
|
"africa_monrovia?" => {
|
|
965
1003
|
name: "africa_monrovia?",
|
|
966
|
-
description:
|
|
1004
|
+
description:
|
|
1005
|
+
"returns whether the current time zone is africa/monrovia.",
|
|
967
1006
|
examples: [
|
|
968
1007
|
"Date.africa_monrovia?",
|
|
969
1008
|
"Date.new(\"2024-03-05\").africa_monrovia?",
|
|
@@ -972,7 +1011,8 @@ class Code
|
|
|
972
1011
|
},
|
|
973
1012
|
"africa_nairobi?" => {
|
|
974
1013
|
name: "africa_nairobi?",
|
|
975
|
-
description:
|
|
1014
|
+
description:
|
|
1015
|
+
"returns whether the current time zone is africa/nairobi.",
|
|
976
1016
|
examples: [
|
|
977
1017
|
"Date.africa_nairobi?",
|
|
978
1018
|
"Date.new(\"2024-03-05\").africa_nairobi?",
|
|
@@ -981,7 +1021,8 @@ class Code
|
|
|
981
1021
|
},
|
|
982
1022
|
"africa_ndjamena?" => {
|
|
983
1023
|
name: "africa_ndjamena?",
|
|
984
|
-
description:
|
|
1024
|
+
description:
|
|
1025
|
+
"returns whether the current time zone is africa/ndjamena.",
|
|
985
1026
|
examples: [
|
|
986
1027
|
"Date.africa_ndjamena?",
|
|
987
1028
|
"Date.new(\"2024-03-05\").africa_ndjamena?",
|
|
@@ -990,7 +1031,8 @@ class Code
|
|
|
990
1031
|
},
|
|
991
1032
|
"africa_niamey?" => {
|
|
992
1033
|
name: "africa_niamey?",
|
|
993
|
-
description:
|
|
1034
|
+
description:
|
|
1035
|
+
"returns whether the current time zone is africa/niamey.",
|
|
994
1036
|
examples: [
|
|
995
1037
|
"Date.africa_niamey?",
|
|
996
1038
|
"Date.new(\"2024-03-05\").africa_niamey?",
|
|
@@ -999,7 +1041,8 @@ class Code
|
|
|
999
1041
|
},
|
|
1000
1042
|
"africa_nouakchott?" => {
|
|
1001
1043
|
name: "africa_nouakchott?",
|
|
1002
|
-
description:
|
|
1044
|
+
description:
|
|
1045
|
+
"returns whether the current time zone is africa/nouakchott.",
|
|
1003
1046
|
examples: [
|
|
1004
1047
|
"Date.africa_nouakchott?",
|
|
1005
1048
|
"Date.new(\"2024-03-05\").africa_nouakchott?",
|
|
@@ -1008,7 +1051,8 @@ class Code
|
|
|
1008
1051
|
},
|
|
1009
1052
|
"africa_ouagadougou?" => {
|
|
1010
1053
|
name: "africa_ouagadougou?",
|
|
1011
|
-
description:
|
|
1054
|
+
description:
|
|
1055
|
+
"returns whether the current time zone is africa/ouagadougou.",
|
|
1012
1056
|
examples: [
|
|
1013
1057
|
"Date.africa_ouagadougou?",
|
|
1014
1058
|
"Date.new(\"2024-03-05\").africa_ouagadougou?",
|
|
@@ -1017,7 +1061,8 @@ class Code
|
|
|
1017
1061
|
},
|
|
1018
1062
|
"africa_porto_minus_novo?" => {
|
|
1019
1063
|
name: "africa_porto_minus_novo?",
|
|
1020
|
-
description:
|
|
1064
|
+
description:
|
|
1065
|
+
"returns whether the current time zone is africa/porto-novo.",
|
|
1021
1066
|
examples: [
|
|
1022
1067
|
"Date.africa_porto_minus_novo?",
|
|
1023
1068
|
"Date.new(\"2024-03-05\").africa_porto_minus_novo?",
|
|
@@ -1026,7 +1071,8 @@ class Code
|
|
|
1026
1071
|
},
|
|
1027
1072
|
"africa_sao_tome?" => {
|
|
1028
1073
|
name: "africa_sao_tome?",
|
|
1029
|
-
description:
|
|
1074
|
+
description:
|
|
1075
|
+
"returns whether the current time zone is africa/sao_tome.",
|
|
1030
1076
|
examples: [
|
|
1031
1077
|
"Date.africa_sao_tome?",
|
|
1032
1078
|
"Date.new(\"2024-03-05\").africa_sao_tome?",
|
|
@@ -1035,7 +1081,8 @@ class Code
|
|
|
1035
1081
|
},
|
|
1036
1082
|
"africa_timbuktu?" => {
|
|
1037
1083
|
name: "africa_timbuktu?",
|
|
1038
|
-
description:
|
|
1084
|
+
description:
|
|
1085
|
+
"returns whether the current time zone is africa/timbuktu.",
|
|
1039
1086
|
examples: [
|
|
1040
1087
|
"Date.africa_timbuktu?",
|
|
1041
1088
|
"Date.new(\"2024-03-05\").africa_timbuktu?",
|
|
@@ -1044,7 +1091,8 @@ class Code
|
|
|
1044
1091
|
},
|
|
1045
1092
|
"africa_tripoli?" => {
|
|
1046
1093
|
name: "africa_tripoli?",
|
|
1047
|
-
description:
|
|
1094
|
+
description:
|
|
1095
|
+
"returns whether the current time zone is africa/tripoli.",
|
|
1048
1096
|
examples: [
|
|
1049
1097
|
"Date.africa_tripoli?",
|
|
1050
1098
|
"Date.new(\"2024-03-05\").africa_tripoli?",
|
|
@@ -1062,7 +1110,8 @@ class Code
|
|
|
1062
1110
|
},
|
|
1063
1111
|
"africa_windhoek?" => {
|
|
1064
1112
|
name: "africa_windhoek?",
|
|
1065
|
-
description:
|
|
1113
|
+
description:
|
|
1114
|
+
"returns whether the current time zone is africa/windhoek.",
|
|
1066
1115
|
examples: [
|
|
1067
1116
|
"Date.africa_windhoek?",
|
|
1068
1117
|
"Date.new(\"2024-03-05\").africa_windhoek?",
|
|
@@ -1080,7 +1129,8 @@ class Code
|
|
|
1080
1129
|
},
|
|
1081
1130
|
"america_anchorage?" => {
|
|
1082
1131
|
name: "america_anchorage?",
|
|
1083
|
-
description:
|
|
1132
|
+
description:
|
|
1133
|
+
"returns whether the current time zone is america/anchorage.",
|
|
1084
1134
|
examples: [
|
|
1085
1135
|
"Date.america_anchorage?",
|
|
1086
1136
|
"Date.new(\"2024-03-05\").america_anchorage?",
|
|
@@ -1089,7 +1139,8 @@ class Code
|
|
|
1089
1139
|
},
|
|
1090
1140
|
"america_anguilla?" => {
|
|
1091
1141
|
name: "america_anguilla?",
|
|
1092
|
-
description:
|
|
1142
|
+
description:
|
|
1143
|
+
"returns whether the current time zone is america/anguilla.",
|
|
1093
1144
|
examples: [
|
|
1094
1145
|
"Date.america_anguilla?",
|
|
1095
1146
|
"Date.new(\"2024-03-05\").america_anguilla?",
|
|
@@ -1098,7 +1149,8 @@ class Code
|
|
|
1098
1149
|
},
|
|
1099
1150
|
"america_antigua?" => {
|
|
1100
1151
|
name: "america_antigua?",
|
|
1101
|
-
description:
|
|
1152
|
+
description:
|
|
1153
|
+
"returns whether the current time zone is america/antigua.",
|
|
1102
1154
|
examples: [
|
|
1103
1155
|
"Date.america_antigua?",
|
|
1104
1156
|
"Date.new(\"2024-03-05\").america_antigua?",
|
|
@@ -1107,7 +1159,8 @@ class Code
|
|
|
1107
1159
|
},
|
|
1108
1160
|
"america_araguaina?" => {
|
|
1109
1161
|
name: "america_araguaina?",
|
|
1110
|
-
description:
|
|
1162
|
+
description:
|
|
1163
|
+
"returns whether the current time zone is america/araguaina.",
|
|
1111
1164
|
examples: [
|
|
1112
1165
|
"Date.america_araguaina?",
|
|
1113
1166
|
"Date.new(\"2024-03-05\").america_araguaina?",
|
|
@@ -1116,7 +1169,8 @@ class Code
|
|
|
1116
1169
|
},
|
|
1117
1170
|
"america_argentina_buenos_aires?" => {
|
|
1118
1171
|
name: "america_argentina_buenos_aires?",
|
|
1119
|
-
description:
|
|
1172
|
+
description:
|
|
1173
|
+
"returns whether the current time zone is america/argentina/buenos_aires.",
|
|
1120
1174
|
examples: [
|
|
1121
1175
|
"Date.america_argentina_buenos_aires?",
|
|
1122
1176
|
"Date.new(\"2024-03-05\").america_argentina_buenos_aires?",
|
|
@@ -1125,7 +1179,8 @@ class Code
|
|
|
1125
1179
|
},
|
|
1126
1180
|
"america_argentina_catamarca?" => {
|
|
1127
1181
|
name: "america_argentina_catamarca?",
|
|
1128
|
-
description:
|
|
1182
|
+
description:
|
|
1183
|
+
"returns whether the current time zone is america/argentina/catamarca.",
|
|
1129
1184
|
examples: [
|
|
1130
1185
|
"Date.america_argentina_catamarca?",
|
|
1131
1186
|
"Date.new(\"2024-03-05\").america_argentina_catamarca?",
|
|
@@ -1134,7 +1189,8 @@ class Code
|
|
|
1134
1189
|
},
|
|
1135
1190
|
"america_argentina_comodrivadavia?" => {
|
|
1136
1191
|
name: "america_argentina_comodrivadavia?",
|
|
1137
|
-
description:
|
|
1192
|
+
description:
|
|
1193
|
+
"returns whether the current time zone is america/argentina/comodrivadavia.",
|
|
1138
1194
|
examples: [
|
|
1139
1195
|
"Date.america_argentina_comodrivadavia?",
|
|
1140
1196
|
"Date.new(\"2024-03-05\").america_argentina_comodrivadavia?",
|
|
@@ -1143,7 +1199,8 @@ class Code
|
|
|
1143
1199
|
},
|
|
1144
1200
|
"america_argentina_cordoba?" => {
|
|
1145
1201
|
name: "america_argentina_cordoba?",
|
|
1146
|
-
description:
|
|
1202
|
+
description:
|
|
1203
|
+
"returns whether the current time zone is america/argentina/cordoba.",
|
|
1147
1204
|
examples: [
|
|
1148
1205
|
"Date.america_argentina_cordoba?",
|
|
1149
1206
|
"Date.new(\"2024-03-05\").america_argentina_cordoba?",
|
|
@@ -1152,7 +1209,8 @@ class Code
|
|
|
1152
1209
|
},
|
|
1153
1210
|
"america_argentina_jujuy?" => {
|
|
1154
1211
|
name: "america_argentina_jujuy?",
|
|
1155
|
-
description:
|
|
1212
|
+
description:
|
|
1213
|
+
"returns whether the current time zone is america/argentina/jujuy.",
|
|
1156
1214
|
examples: [
|
|
1157
1215
|
"Date.america_argentina_jujuy?",
|
|
1158
1216
|
"Date.new(\"2024-03-05\").america_argentina_jujuy?",
|
|
@@ -1161,7 +1219,8 @@ class Code
|
|
|
1161
1219
|
},
|
|
1162
1220
|
"america_argentina_la_rioja?" => {
|
|
1163
1221
|
name: "america_argentina_la_rioja?",
|
|
1164
|
-
description:
|
|
1222
|
+
description:
|
|
1223
|
+
"returns whether the current time zone is america/argentina/la_rioja.",
|
|
1165
1224
|
examples: [
|
|
1166
1225
|
"Date.america_argentina_la_rioja?",
|
|
1167
1226
|
"Date.new(\"2024-03-05\").america_argentina_la_rioja?",
|
|
@@ -1170,7 +1229,8 @@ class Code
|
|
|
1170
1229
|
},
|
|
1171
1230
|
"america_argentina_mendoza?" => {
|
|
1172
1231
|
name: "america_argentina_mendoza?",
|
|
1173
|
-
description:
|
|
1232
|
+
description:
|
|
1233
|
+
"returns whether the current time zone is america/argentina/mendoza.",
|
|
1174
1234
|
examples: [
|
|
1175
1235
|
"Date.america_argentina_mendoza?",
|
|
1176
1236
|
"Date.new(\"2024-03-05\").america_argentina_mendoza?",
|
|
@@ -1179,7 +1239,8 @@ class Code
|
|
|
1179
1239
|
},
|
|
1180
1240
|
"america_argentina_rio_gallegos?" => {
|
|
1181
1241
|
name: "america_argentina_rio_gallegos?",
|
|
1182
|
-
description:
|
|
1242
|
+
description:
|
|
1243
|
+
"returns whether the current time zone is america/argentina/rio_gallegos.",
|
|
1183
1244
|
examples: [
|
|
1184
1245
|
"Date.america_argentina_rio_gallegos?",
|
|
1185
1246
|
"Date.new(\"2024-03-05\").america_argentina_rio_gallegos?",
|
|
@@ -1188,7 +1249,8 @@ class Code
|
|
|
1188
1249
|
},
|
|
1189
1250
|
"america_argentina_salta?" => {
|
|
1190
1251
|
name: "america_argentina_salta?",
|
|
1191
|
-
description:
|
|
1252
|
+
description:
|
|
1253
|
+
"returns whether the current time zone is america/argentina/salta.",
|
|
1192
1254
|
examples: [
|
|
1193
1255
|
"Date.america_argentina_salta?",
|
|
1194
1256
|
"Date.new(\"2024-03-05\").america_argentina_salta?",
|
|
@@ -1197,7 +1259,8 @@ class Code
|
|
|
1197
1259
|
},
|
|
1198
1260
|
"america_argentina_san_juan?" => {
|
|
1199
1261
|
name: "america_argentina_san_juan?",
|
|
1200
|
-
description:
|
|
1262
|
+
description:
|
|
1263
|
+
"returns whether the current time zone is america/argentina/san_juan.",
|
|
1201
1264
|
examples: [
|
|
1202
1265
|
"Date.america_argentina_san_juan?",
|
|
1203
1266
|
"Date.new(\"2024-03-05\").america_argentina_san_juan?",
|
|
@@ -1206,7 +1269,8 @@ class Code
|
|
|
1206
1269
|
},
|
|
1207
1270
|
"america_argentina_san_luis?" => {
|
|
1208
1271
|
name: "america_argentina_san_luis?",
|
|
1209
|
-
description:
|
|
1272
|
+
description:
|
|
1273
|
+
"returns whether the current time zone is america/argentina/san_luis.",
|
|
1210
1274
|
examples: [
|
|
1211
1275
|
"Date.america_argentina_san_luis?",
|
|
1212
1276
|
"Date.new(\"2024-03-05\").america_argentina_san_luis?",
|
|
@@ -1215,7 +1279,8 @@ class Code
|
|
|
1215
1279
|
},
|
|
1216
1280
|
"america_argentina_tucuman?" => {
|
|
1217
1281
|
name: "america_argentina_tucuman?",
|
|
1218
|
-
description:
|
|
1282
|
+
description:
|
|
1283
|
+
"returns whether the current time zone is america/argentina/tucuman.",
|
|
1219
1284
|
examples: [
|
|
1220
1285
|
"Date.america_argentina_tucuman?",
|
|
1221
1286
|
"Date.new(\"2024-03-05\").america_argentina_tucuman?",
|
|
@@ -1224,7 +1289,8 @@ class Code
|
|
|
1224
1289
|
},
|
|
1225
1290
|
"america_argentina_ushuaia?" => {
|
|
1226
1291
|
name: "america_argentina_ushuaia?",
|
|
1227
|
-
description:
|
|
1292
|
+
description:
|
|
1293
|
+
"returns whether the current time zone is america/argentina/ushuaia.",
|
|
1228
1294
|
examples: [
|
|
1229
1295
|
"Date.america_argentina_ushuaia?",
|
|
1230
1296
|
"Date.new(\"2024-03-05\").america_argentina_ushuaia?",
|
|
@@ -1233,7 +1299,8 @@ class Code
|
|
|
1233
1299
|
},
|
|
1234
1300
|
"america_aruba?" => {
|
|
1235
1301
|
name: "america_aruba?",
|
|
1236
|
-
description:
|
|
1302
|
+
description:
|
|
1303
|
+
"returns whether the current time zone is america/aruba.",
|
|
1237
1304
|
examples: [
|
|
1238
1305
|
"Date.america_aruba?",
|
|
1239
1306
|
"Date.new(\"2024-03-05\").america_aruba?",
|
|
@@ -1242,7 +1309,8 @@ class Code
|
|
|
1242
1309
|
},
|
|
1243
1310
|
"america_asuncion?" => {
|
|
1244
1311
|
name: "america_asuncion?",
|
|
1245
|
-
description:
|
|
1312
|
+
description:
|
|
1313
|
+
"returns whether the current time zone is america/asuncion.",
|
|
1246
1314
|
examples: [
|
|
1247
1315
|
"Date.america_asuncion?",
|
|
1248
1316
|
"Date.new(\"2024-03-05\").america_asuncion?",
|
|
@@ -1251,7 +1319,8 @@ class Code
|
|
|
1251
1319
|
},
|
|
1252
1320
|
"america_atikokan?" => {
|
|
1253
1321
|
name: "america_atikokan?",
|
|
1254
|
-
description:
|
|
1322
|
+
description:
|
|
1323
|
+
"returns whether the current time zone is america/atikokan.",
|
|
1255
1324
|
examples: [
|
|
1256
1325
|
"Date.america_atikokan?",
|
|
1257
1326
|
"Date.new(\"2024-03-05\").america_atikokan?",
|
|
@@ -1269,7 +1338,8 @@ class Code
|
|
|
1269
1338
|
},
|
|
1270
1339
|
"america_bahia?" => {
|
|
1271
1340
|
name: "america_bahia?",
|
|
1272
|
-
description:
|
|
1341
|
+
description:
|
|
1342
|
+
"returns whether the current time zone is america/bahia.",
|
|
1273
1343
|
examples: [
|
|
1274
1344
|
"Date.america_bahia?",
|
|
1275
1345
|
"Date.new(\"2024-03-05\").america_bahia?",
|
|
@@ -1278,7 +1348,8 @@ class Code
|
|
|
1278
1348
|
},
|
|
1279
1349
|
"america_bahia_banderas?" => {
|
|
1280
1350
|
name: "america_bahia_banderas?",
|
|
1281
|
-
description:
|
|
1351
|
+
description:
|
|
1352
|
+
"returns whether the current time zone is america/bahia_banderas.",
|
|
1282
1353
|
examples: [
|
|
1283
1354
|
"Date.america_bahia_banderas?",
|
|
1284
1355
|
"Date.new(\"2024-03-05\").america_bahia_banderas?",
|
|
@@ -1287,7 +1358,8 @@ class Code
|
|
|
1287
1358
|
},
|
|
1288
1359
|
"america_barbados?" => {
|
|
1289
1360
|
name: "america_barbados?",
|
|
1290
|
-
description:
|
|
1361
|
+
description:
|
|
1362
|
+
"returns whether the current time zone is america/barbados.",
|
|
1291
1363
|
examples: [
|
|
1292
1364
|
"Date.america_barbados?",
|
|
1293
1365
|
"Date.new(\"2024-03-05\").america_barbados?",
|
|
@@ -1296,7 +1368,8 @@ class Code
|
|
|
1296
1368
|
},
|
|
1297
1369
|
"america_belem?" => {
|
|
1298
1370
|
name: "america_belem?",
|
|
1299
|
-
description:
|
|
1371
|
+
description:
|
|
1372
|
+
"returns whether the current time zone is america/belem.",
|
|
1300
1373
|
examples: [
|
|
1301
1374
|
"Date.america_belem?",
|
|
1302
1375
|
"Date.new(\"2024-03-05\").america_belem?",
|
|
@@ -1305,7 +1378,8 @@ class Code
|
|
|
1305
1378
|
},
|
|
1306
1379
|
"america_belize?" => {
|
|
1307
1380
|
name: "america_belize?",
|
|
1308
|
-
description:
|
|
1381
|
+
description:
|
|
1382
|
+
"returns whether the current time zone is america/belize.",
|
|
1309
1383
|
examples: [
|
|
1310
1384
|
"Date.america_belize?",
|
|
1311
1385
|
"Date.new(\"2024-03-05\").america_belize?",
|
|
@@ -1314,7 +1388,8 @@ class Code
|
|
|
1314
1388
|
},
|
|
1315
1389
|
"america_blanc_minus_sablon?" => {
|
|
1316
1390
|
name: "america_blanc_minus_sablon?",
|
|
1317
|
-
description:
|
|
1391
|
+
description:
|
|
1392
|
+
"returns whether the current time zone is america/blanc-sablon.",
|
|
1318
1393
|
examples: [
|
|
1319
1394
|
"Date.america_blanc_minus_sablon?",
|
|
1320
1395
|
"Date.new(\"2024-03-05\").america_blanc_minus_sablon?",
|
|
@@ -1323,7 +1398,8 @@ class Code
|
|
|
1323
1398
|
},
|
|
1324
1399
|
"america_boa_vista?" => {
|
|
1325
1400
|
name: "america_boa_vista?",
|
|
1326
|
-
description:
|
|
1401
|
+
description:
|
|
1402
|
+
"returns whether the current time zone is america/boa_vista.",
|
|
1327
1403
|
examples: [
|
|
1328
1404
|
"Date.america_boa_vista?",
|
|
1329
1405
|
"Date.new(\"2024-03-05\").america_boa_vista?",
|
|
@@ -1332,7 +1408,8 @@ class Code
|
|
|
1332
1408
|
},
|
|
1333
1409
|
"america_bogota?" => {
|
|
1334
1410
|
name: "america_bogota?",
|
|
1335
|
-
description:
|
|
1411
|
+
description:
|
|
1412
|
+
"returns whether the current time zone is america/bogota.",
|
|
1336
1413
|
examples: [
|
|
1337
1414
|
"Date.america_bogota?",
|
|
1338
1415
|
"Date.new(\"2024-03-05\").america_bogota?",
|
|
@@ -1341,7 +1418,8 @@ class Code
|
|
|
1341
1418
|
},
|
|
1342
1419
|
"america_boise?" => {
|
|
1343
1420
|
name: "america_boise?",
|
|
1344
|
-
description:
|
|
1421
|
+
description:
|
|
1422
|
+
"returns whether the current time zone is america/boise.",
|
|
1345
1423
|
examples: [
|
|
1346
1424
|
"Date.america_boise?",
|
|
1347
1425
|
"Date.new(\"2024-03-05\").america_boise?",
|
|
@@ -1350,7 +1428,8 @@ class Code
|
|
|
1350
1428
|
},
|
|
1351
1429
|
"america_buenos_aires?" => {
|
|
1352
1430
|
name: "america_buenos_aires?",
|
|
1353
|
-
description:
|
|
1431
|
+
description:
|
|
1432
|
+
"returns whether the current time zone is america/buenos_aires.",
|
|
1354
1433
|
examples: [
|
|
1355
1434
|
"Date.america_buenos_aires?",
|
|
1356
1435
|
"Date.new(\"2024-03-05\").america_buenos_aires?",
|
|
@@ -1359,7 +1438,8 @@ class Code
|
|
|
1359
1438
|
},
|
|
1360
1439
|
"america_cambridge_bay?" => {
|
|
1361
1440
|
name: "america_cambridge_bay?",
|
|
1362
|
-
description:
|
|
1441
|
+
description:
|
|
1442
|
+
"returns whether the current time zone is america/cambridge_bay.",
|
|
1363
1443
|
examples: [
|
|
1364
1444
|
"Date.america_cambridge_bay?",
|
|
1365
1445
|
"Date.new(\"2024-03-05\").america_cambridge_bay?",
|
|
@@ -1368,7 +1448,8 @@ class Code
|
|
|
1368
1448
|
},
|
|
1369
1449
|
"america_campo_grande?" => {
|
|
1370
1450
|
name: "america_campo_grande?",
|
|
1371
|
-
description:
|
|
1451
|
+
description:
|
|
1452
|
+
"returns whether the current time zone is america/campo_grande.",
|
|
1372
1453
|
examples: [
|
|
1373
1454
|
"Date.america_campo_grande?",
|
|
1374
1455
|
"Date.new(\"2024-03-05\").america_campo_grande?",
|
|
@@ -1377,7 +1458,8 @@ class Code
|
|
|
1377
1458
|
},
|
|
1378
1459
|
"america_cancun?" => {
|
|
1379
1460
|
name: "america_cancun?",
|
|
1380
|
-
description:
|
|
1461
|
+
description:
|
|
1462
|
+
"returns whether the current time zone is america/cancun.",
|
|
1381
1463
|
examples: [
|
|
1382
1464
|
"Date.america_cancun?",
|
|
1383
1465
|
"Date.new(\"2024-03-05\").america_cancun?",
|
|
@@ -1386,7 +1468,8 @@ class Code
|
|
|
1386
1468
|
},
|
|
1387
1469
|
"america_caracas?" => {
|
|
1388
1470
|
name: "america_caracas?",
|
|
1389
|
-
description:
|
|
1471
|
+
description:
|
|
1472
|
+
"returns whether the current time zone is america/caracas.",
|
|
1390
1473
|
examples: [
|
|
1391
1474
|
"Date.america_caracas?",
|
|
1392
1475
|
"Date.new(\"2024-03-05\").america_caracas?",
|
|
@@ -1395,7 +1478,8 @@ class Code
|
|
|
1395
1478
|
},
|
|
1396
1479
|
"america_catamarca?" => {
|
|
1397
1480
|
name: "america_catamarca?",
|
|
1398
|
-
description:
|
|
1481
|
+
description:
|
|
1482
|
+
"returns whether the current time zone is america/catamarca.",
|
|
1399
1483
|
examples: [
|
|
1400
1484
|
"Date.america_catamarca?",
|
|
1401
1485
|
"Date.new(\"2024-03-05\").america_catamarca?",
|
|
@@ -1404,7 +1488,8 @@ class Code
|
|
|
1404
1488
|
},
|
|
1405
1489
|
"america_cayenne?" => {
|
|
1406
1490
|
name: "america_cayenne?",
|
|
1407
|
-
description:
|
|
1491
|
+
description:
|
|
1492
|
+
"returns whether the current time zone is america/cayenne.",
|
|
1408
1493
|
examples: [
|
|
1409
1494
|
"Date.america_cayenne?",
|
|
1410
1495
|
"Date.new(\"2024-03-05\").america_cayenne?",
|
|
@@ -1413,7 +1498,8 @@ class Code
|
|
|
1413
1498
|
},
|
|
1414
1499
|
"america_cayman?" => {
|
|
1415
1500
|
name: "america_cayman?",
|
|
1416
|
-
description:
|
|
1501
|
+
description:
|
|
1502
|
+
"returns whether the current time zone is america/cayman.",
|
|
1417
1503
|
examples: [
|
|
1418
1504
|
"Date.america_cayman?",
|
|
1419
1505
|
"Date.new(\"2024-03-05\").america_cayman?",
|
|
@@ -1422,7 +1508,8 @@ class Code
|
|
|
1422
1508
|
},
|
|
1423
1509
|
"america_chicago?" => {
|
|
1424
1510
|
name: "america_chicago?",
|
|
1425
|
-
description:
|
|
1511
|
+
description:
|
|
1512
|
+
"returns whether the current time zone is america/chicago.",
|
|
1426
1513
|
examples: [
|
|
1427
1514
|
"Date.america_chicago?",
|
|
1428
1515
|
"Date.new(\"2024-03-05\").america_chicago?",
|
|
@@ -1431,7 +1518,8 @@ class Code
|
|
|
1431
1518
|
},
|
|
1432
1519
|
"america_chihuahua?" => {
|
|
1433
1520
|
name: "america_chihuahua?",
|
|
1434
|
-
description:
|
|
1521
|
+
description:
|
|
1522
|
+
"returns whether the current time zone is america/chihuahua.",
|
|
1435
1523
|
examples: [
|
|
1436
1524
|
"Date.america_chihuahua?",
|
|
1437
1525
|
"Date.new(\"2024-03-05\").america_chihuahua?",
|
|
@@ -1440,7 +1528,8 @@ class Code
|
|
|
1440
1528
|
},
|
|
1441
1529
|
"america_ciudad_juarez?" => {
|
|
1442
1530
|
name: "america_ciudad_juarez?",
|
|
1443
|
-
description:
|
|
1531
|
+
description:
|
|
1532
|
+
"returns whether the current time zone is america/ciudad_juarez.",
|
|
1444
1533
|
examples: [
|
|
1445
1534
|
"Date.america_ciudad_juarez?",
|
|
1446
1535
|
"Date.new(\"2024-03-05\").america_ciudad_juarez?",
|
|
@@ -1449,7 +1538,8 @@ class Code
|
|
|
1449
1538
|
},
|
|
1450
1539
|
"america_coral_harbour?" => {
|
|
1451
1540
|
name: "america_coral_harbour?",
|
|
1452
|
-
description:
|
|
1541
|
+
description:
|
|
1542
|
+
"returns whether the current time zone is america/coral_harbour.",
|
|
1453
1543
|
examples: [
|
|
1454
1544
|
"Date.america_coral_harbour?",
|
|
1455
1545
|
"Date.new(\"2024-03-05\").america_coral_harbour?",
|
|
@@ -1458,7 +1548,8 @@ class Code
|
|
|
1458
1548
|
},
|
|
1459
1549
|
"america_cordoba?" => {
|
|
1460
1550
|
name: "america_cordoba?",
|
|
1461
|
-
description:
|
|
1551
|
+
description:
|
|
1552
|
+
"returns whether the current time zone is america/cordoba.",
|
|
1462
1553
|
examples: [
|
|
1463
1554
|
"Date.america_cordoba?",
|
|
1464
1555
|
"Date.new(\"2024-03-05\").america_cordoba?",
|
|
@@ -1467,7 +1558,8 @@ class Code
|
|
|
1467
1558
|
},
|
|
1468
1559
|
"america_costa_rica?" => {
|
|
1469
1560
|
name: "america_costa_rica?",
|
|
1470
|
-
description:
|
|
1561
|
+
description:
|
|
1562
|
+
"returns whether the current time zone is america/costa_rica.",
|
|
1471
1563
|
examples: [
|
|
1472
1564
|
"Date.america_costa_rica?",
|
|
1473
1565
|
"Date.new(\"2024-03-05\").america_costa_rica?",
|
|
@@ -1476,7 +1568,8 @@ class Code
|
|
|
1476
1568
|
},
|
|
1477
1569
|
"america_coyhaique?" => {
|
|
1478
1570
|
name: "america_coyhaique?",
|
|
1479
|
-
description:
|
|
1571
|
+
description:
|
|
1572
|
+
"returns whether the current time zone is america/coyhaique.",
|
|
1480
1573
|
examples: [
|
|
1481
1574
|
"Date.america_coyhaique?",
|
|
1482
1575
|
"Date.new(\"2024-03-05\").america_coyhaique?",
|
|
@@ -1485,7 +1578,8 @@ class Code
|
|
|
1485
1578
|
},
|
|
1486
1579
|
"america_creston?" => {
|
|
1487
1580
|
name: "america_creston?",
|
|
1488
|
-
description:
|
|
1581
|
+
description:
|
|
1582
|
+
"returns whether the current time zone is america/creston.",
|
|
1489
1583
|
examples: [
|
|
1490
1584
|
"Date.america_creston?",
|
|
1491
1585
|
"Date.new(\"2024-03-05\").america_creston?",
|
|
@@ -1494,7 +1588,8 @@ class Code
|
|
|
1494
1588
|
},
|
|
1495
1589
|
"america_cuiaba?" => {
|
|
1496
1590
|
name: "america_cuiaba?",
|
|
1497
|
-
description:
|
|
1591
|
+
description:
|
|
1592
|
+
"returns whether the current time zone is america/cuiaba.",
|
|
1498
1593
|
examples: [
|
|
1499
1594
|
"Date.america_cuiaba?",
|
|
1500
1595
|
"Date.new(\"2024-03-05\").america_cuiaba?",
|
|
@@ -1503,7 +1598,8 @@ class Code
|
|
|
1503
1598
|
},
|
|
1504
1599
|
"america_curacao?" => {
|
|
1505
1600
|
name: "america_curacao?",
|
|
1506
|
-
description:
|
|
1601
|
+
description:
|
|
1602
|
+
"returns whether the current time zone is america/curacao.",
|
|
1507
1603
|
examples: [
|
|
1508
1604
|
"Date.america_curacao?",
|
|
1509
1605
|
"Date.new(\"2024-03-05\").america_curacao?",
|
|
@@ -1512,7 +1608,8 @@ class Code
|
|
|
1512
1608
|
},
|
|
1513
1609
|
"america_danmarkshavn?" => {
|
|
1514
1610
|
name: "america_danmarkshavn?",
|
|
1515
|
-
description:
|
|
1611
|
+
description:
|
|
1612
|
+
"returns whether the current time zone is america/danmarkshavn.",
|
|
1516
1613
|
examples: [
|
|
1517
1614
|
"Date.america_danmarkshavn?",
|
|
1518
1615
|
"Date.new(\"2024-03-05\").america_danmarkshavn?",
|
|
@@ -1521,7 +1618,8 @@ class Code
|
|
|
1521
1618
|
},
|
|
1522
1619
|
"america_dawson?" => {
|
|
1523
1620
|
name: "america_dawson?",
|
|
1524
|
-
description:
|
|
1621
|
+
description:
|
|
1622
|
+
"returns whether the current time zone is america/dawson.",
|
|
1525
1623
|
examples: [
|
|
1526
1624
|
"Date.america_dawson?",
|
|
1527
1625
|
"Date.new(\"2024-03-05\").america_dawson?",
|
|
@@ -1530,7 +1628,8 @@ class Code
|
|
|
1530
1628
|
},
|
|
1531
1629
|
"america_dawson_creek?" => {
|
|
1532
1630
|
name: "america_dawson_creek?",
|
|
1533
|
-
description:
|
|
1631
|
+
description:
|
|
1632
|
+
"returns whether the current time zone is america/dawson_creek.",
|
|
1534
1633
|
examples: [
|
|
1535
1634
|
"Date.america_dawson_creek?",
|
|
1536
1635
|
"Date.new(\"2024-03-05\").america_dawson_creek?",
|
|
@@ -1539,7 +1638,8 @@ class Code
|
|
|
1539
1638
|
},
|
|
1540
1639
|
"america_denver?" => {
|
|
1541
1640
|
name: "america_denver?",
|
|
1542
|
-
description:
|
|
1641
|
+
description:
|
|
1642
|
+
"returns whether the current time zone is america/denver.",
|
|
1543
1643
|
examples: [
|
|
1544
1644
|
"Date.america_denver?",
|
|
1545
1645
|
"Date.new(\"2024-03-05\").america_denver?",
|
|
@@ -1548,7 +1648,8 @@ class Code
|
|
|
1548
1648
|
},
|
|
1549
1649
|
"america_detroit?" => {
|
|
1550
1650
|
name: "america_detroit?",
|
|
1551
|
-
description:
|
|
1651
|
+
description:
|
|
1652
|
+
"returns whether the current time zone is america/detroit.",
|
|
1552
1653
|
examples: [
|
|
1553
1654
|
"Date.america_detroit?",
|
|
1554
1655
|
"Date.new(\"2024-03-05\").america_detroit?",
|
|
@@ -1557,7 +1658,8 @@ class Code
|
|
|
1557
1658
|
},
|
|
1558
1659
|
"america_dominica?" => {
|
|
1559
1660
|
name: "america_dominica?",
|
|
1560
|
-
description:
|
|
1661
|
+
description:
|
|
1662
|
+
"returns whether the current time zone is america/dominica.",
|
|
1561
1663
|
examples: [
|
|
1562
1664
|
"Date.america_dominica?",
|
|
1563
1665
|
"Date.new(\"2024-03-05\").america_dominica?",
|
|
@@ -1566,7 +1668,8 @@ class Code
|
|
|
1566
1668
|
},
|
|
1567
1669
|
"america_edmonton?" => {
|
|
1568
1670
|
name: "america_edmonton?",
|
|
1569
|
-
description:
|
|
1671
|
+
description:
|
|
1672
|
+
"returns whether the current time zone is america/edmonton.",
|
|
1570
1673
|
examples: [
|
|
1571
1674
|
"Date.america_edmonton?",
|
|
1572
1675
|
"Date.new(\"2024-03-05\").america_edmonton?",
|
|
@@ -1575,7 +1678,8 @@ class Code
|
|
|
1575
1678
|
},
|
|
1576
1679
|
"america_eirunepe?" => {
|
|
1577
1680
|
name: "america_eirunepe?",
|
|
1578
|
-
description:
|
|
1681
|
+
description:
|
|
1682
|
+
"returns whether the current time zone is america/eirunepe.",
|
|
1579
1683
|
examples: [
|
|
1580
1684
|
"Date.america_eirunepe?",
|
|
1581
1685
|
"Date.new(\"2024-03-05\").america_eirunepe?",
|
|
@@ -1584,7 +1688,8 @@ class Code
|
|
|
1584
1688
|
},
|
|
1585
1689
|
"america_el_salvador?" => {
|
|
1586
1690
|
name: "america_el_salvador?",
|
|
1587
|
-
description:
|
|
1691
|
+
description:
|
|
1692
|
+
"returns whether the current time zone is america/el_salvador.",
|
|
1588
1693
|
examples: [
|
|
1589
1694
|
"Date.america_el_salvador?",
|
|
1590
1695
|
"Date.new(\"2024-03-05\").america_el_salvador?",
|
|
@@ -1593,7 +1698,8 @@ class Code
|
|
|
1593
1698
|
},
|
|
1594
1699
|
"america_ensenada?" => {
|
|
1595
1700
|
name: "america_ensenada?",
|
|
1596
|
-
description:
|
|
1701
|
+
description:
|
|
1702
|
+
"returns whether the current time zone is america/ensenada.",
|
|
1597
1703
|
examples: [
|
|
1598
1704
|
"Date.america_ensenada?",
|
|
1599
1705
|
"Date.new(\"2024-03-05\").america_ensenada?",
|
|
@@ -1602,7 +1708,8 @@ class Code
|
|
|
1602
1708
|
},
|
|
1603
1709
|
"america_fort_nelson?" => {
|
|
1604
1710
|
name: "america_fort_nelson?",
|
|
1605
|
-
description:
|
|
1711
|
+
description:
|
|
1712
|
+
"returns whether the current time zone is america/fort_nelson.",
|
|
1606
1713
|
examples: [
|
|
1607
1714
|
"Date.america_fort_nelson?",
|
|
1608
1715
|
"Date.new(\"2024-03-05\").america_fort_nelson?",
|
|
@@ -1611,7 +1718,8 @@ class Code
|
|
|
1611
1718
|
},
|
|
1612
1719
|
"america_fort_wayne?" => {
|
|
1613
1720
|
name: "america_fort_wayne?",
|
|
1614
|
-
description:
|
|
1721
|
+
description:
|
|
1722
|
+
"returns whether the current time zone is america/fort_wayne.",
|
|
1615
1723
|
examples: [
|
|
1616
1724
|
"Date.america_fort_wayne?",
|
|
1617
1725
|
"Date.new(\"2024-03-05\").america_fort_wayne?",
|
|
@@ -1620,7 +1728,8 @@ class Code
|
|
|
1620
1728
|
},
|
|
1621
1729
|
"america_fortaleza?" => {
|
|
1622
1730
|
name: "america_fortaleza?",
|
|
1623
|
-
description:
|
|
1731
|
+
description:
|
|
1732
|
+
"returns whether the current time zone is america/fortaleza.",
|
|
1624
1733
|
examples: [
|
|
1625
1734
|
"Date.america_fortaleza?",
|
|
1626
1735
|
"Date.new(\"2024-03-05\").america_fortaleza?",
|
|
@@ -1629,7 +1738,8 @@ class Code
|
|
|
1629
1738
|
},
|
|
1630
1739
|
"america_glace_bay?" => {
|
|
1631
1740
|
name: "america_glace_bay?",
|
|
1632
|
-
description:
|
|
1741
|
+
description:
|
|
1742
|
+
"returns whether the current time zone is america/glace_bay.",
|
|
1633
1743
|
examples: [
|
|
1634
1744
|
"Date.america_glace_bay?",
|
|
1635
1745
|
"Date.new(\"2024-03-05\").america_glace_bay?",
|
|
@@ -1638,7 +1748,8 @@ class Code
|
|
|
1638
1748
|
},
|
|
1639
1749
|
"america_godthab?" => {
|
|
1640
1750
|
name: "america_godthab?",
|
|
1641
|
-
description:
|
|
1751
|
+
description:
|
|
1752
|
+
"returns whether the current time zone is america/godthab.",
|
|
1642
1753
|
examples: [
|
|
1643
1754
|
"Date.america_godthab?",
|
|
1644
1755
|
"Date.new(\"2024-03-05\").america_godthab?",
|
|
@@ -1647,7 +1758,8 @@ class Code
|
|
|
1647
1758
|
},
|
|
1648
1759
|
"america_goose_bay?" => {
|
|
1649
1760
|
name: "america_goose_bay?",
|
|
1650
|
-
description:
|
|
1761
|
+
description:
|
|
1762
|
+
"returns whether the current time zone is america/goose_bay.",
|
|
1651
1763
|
examples: [
|
|
1652
1764
|
"Date.america_goose_bay?",
|
|
1653
1765
|
"Date.new(\"2024-03-05\").america_goose_bay?",
|
|
@@ -1656,7 +1768,8 @@ class Code
|
|
|
1656
1768
|
},
|
|
1657
1769
|
"america_grand_turk?" => {
|
|
1658
1770
|
name: "america_grand_turk?",
|
|
1659
|
-
description:
|
|
1771
|
+
description:
|
|
1772
|
+
"returns whether the current time zone is america/grand_turk.",
|
|
1660
1773
|
examples: [
|
|
1661
1774
|
"Date.america_grand_turk?",
|
|
1662
1775
|
"Date.new(\"2024-03-05\").america_grand_turk?",
|
|
@@ -1665,7 +1778,8 @@ class Code
|
|
|
1665
1778
|
},
|
|
1666
1779
|
"america_grenada?" => {
|
|
1667
1780
|
name: "america_grenada?",
|
|
1668
|
-
description:
|
|
1781
|
+
description:
|
|
1782
|
+
"returns whether the current time zone is america/grenada.",
|
|
1669
1783
|
examples: [
|
|
1670
1784
|
"Date.america_grenada?",
|
|
1671
1785
|
"Date.new(\"2024-03-05\").america_grenada?",
|
|
@@ -1674,7 +1788,8 @@ class Code
|
|
|
1674
1788
|
},
|
|
1675
1789
|
"america_guadeloupe?" => {
|
|
1676
1790
|
name: "america_guadeloupe?",
|
|
1677
|
-
description:
|
|
1791
|
+
description:
|
|
1792
|
+
"returns whether the current time zone is america/guadeloupe.",
|
|
1678
1793
|
examples: [
|
|
1679
1794
|
"Date.america_guadeloupe?",
|
|
1680
1795
|
"Date.new(\"2024-03-05\").america_guadeloupe?",
|
|
@@ -1683,7 +1798,8 @@ class Code
|
|
|
1683
1798
|
},
|
|
1684
1799
|
"america_guatemala?" => {
|
|
1685
1800
|
name: "america_guatemala?",
|
|
1686
|
-
description:
|
|
1801
|
+
description:
|
|
1802
|
+
"returns whether the current time zone is america/guatemala.",
|
|
1687
1803
|
examples: [
|
|
1688
1804
|
"Date.america_guatemala?",
|
|
1689
1805
|
"Date.new(\"2024-03-05\").america_guatemala?",
|
|
@@ -1692,7 +1808,8 @@ class Code
|
|
|
1692
1808
|
},
|
|
1693
1809
|
"america_guayaquil?" => {
|
|
1694
1810
|
name: "america_guayaquil?",
|
|
1695
|
-
description:
|
|
1811
|
+
description:
|
|
1812
|
+
"returns whether the current time zone is america/guayaquil.",
|
|
1696
1813
|
examples: [
|
|
1697
1814
|
"Date.america_guayaquil?",
|
|
1698
1815
|
"Date.new(\"2024-03-05\").america_guayaquil?",
|
|
@@ -1701,7 +1818,8 @@ class Code
|
|
|
1701
1818
|
},
|
|
1702
1819
|
"america_guyana?" => {
|
|
1703
1820
|
name: "america_guyana?",
|
|
1704
|
-
description:
|
|
1821
|
+
description:
|
|
1822
|
+
"returns whether the current time zone is america/guyana.",
|
|
1705
1823
|
examples: [
|
|
1706
1824
|
"Date.america_guyana?",
|
|
1707
1825
|
"Date.new(\"2024-03-05\").america_guyana?",
|
|
@@ -1710,7 +1828,8 @@ class Code
|
|
|
1710
1828
|
},
|
|
1711
1829
|
"america_halifax?" => {
|
|
1712
1830
|
name: "america_halifax?",
|
|
1713
|
-
description:
|
|
1831
|
+
description:
|
|
1832
|
+
"returns whether the current time zone is america/halifax.",
|
|
1714
1833
|
examples: [
|
|
1715
1834
|
"Date.america_halifax?",
|
|
1716
1835
|
"Date.new(\"2024-03-05\").america_halifax?",
|
|
@@ -1719,7 +1838,8 @@ class Code
|
|
|
1719
1838
|
},
|
|
1720
1839
|
"america_havana?" => {
|
|
1721
1840
|
name: "america_havana?",
|
|
1722
|
-
description:
|
|
1841
|
+
description:
|
|
1842
|
+
"returns whether the current time zone is america/havana.",
|
|
1723
1843
|
examples: [
|
|
1724
1844
|
"Date.america_havana?",
|
|
1725
1845
|
"Date.new(\"2024-03-05\").america_havana?",
|
|
@@ -1728,7 +1848,8 @@ class Code
|
|
|
1728
1848
|
},
|
|
1729
1849
|
"america_hermosillo?" => {
|
|
1730
1850
|
name: "america_hermosillo?",
|
|
1731
|
-
description:
|
|
1851
|
+
description:
|
|
1852
|
+
"returns whether the current time zone is america/hermosillo.",
|
|
1732
1853
|
examples: [
|
|
1733
1854
|
"Date.america_hermosillo?",
|
|
1734
1855
|
"Date.new(\"2024-03-05\").america_hermosillo?",
|
|
@@ -1737,7 +1858,8 @@ class Code
|
|
|
1737
1858
|
},
|
|
1738
1859
|
"america_indiana_indianapolis?" => {
|
|
1739
1860
|
name: "america_indiana_indianapolis?",
|
|
1740
|
-
description:
|
|
1861
|
+
description:
|
|
1862
|
+
"returns whether the current time zone is america/indiana/indianapolis.",
|
|
1741
1863
|
examples: [
|
|
1742
1864
|
"Date.america_indiana_indianapolis?",
|
|
1743
1865
|
"Date.new(\"2024-03-05\").america_indiana_indianapolis?",
|
|
@@ -1746,7 +1868,8 @@ class Code
|
|
|
1746
1868
|
},
|
|
1747
1869
|
"america_indiana_knox?" => {
|
|
1748
1870
|
name: "america_indiana_knox?",
|
|
1749
|
-
description:
|
|
1871
|
+
description:
|
|
1872
|
+
"returns whether the current time zone is america/indiana/knox.",
|
|
1750
1873
|
examples: [
|
|
1751
1874
|
"Date.america_indiana_knox?",
|
|
1752
1875
|
"Date.new(\"2024-03-05\").america_indiana_knox?",
|
|
@@ -1755,7 +1878,8 @@ class Code
|
|
|
1755
1878
|
},
|
|
1756
1879
|
"america_indiana_marengo?" => {
|
|
1757
1880
|
name: "america_indiana_marengo?",
|
|
1758
|
-
description:
|
|
1881
|
+
description:
|
|
1882
|
+
"returns whether the current time zone is america/indiana/marengo.",
|
|
1759
1883
|
examples: [
|
|
1760
1884
|
"Date.america_indiana_marengo?",
|
|
1761
1885
|
"Date.new(\"2024-03-05\").america_indiana_marengo?",
|
|
@@ -1764,7 +1888,8 @@ class Code
|
|
|
1764
1888
|
},
|
|
1765
1889
|
"america_indiana_petersburg?" => {
|
|
1766
1890
|
name: "america_indiana_petersburg?",
|
|
1767
|
-
description:
|
|
1891
|
+
description:
|
|
1892
|
+
"returns whether the current time zone is america/indiana/petersburg.",
|
|
1768
1893
|
examples: [
|
|
1769
1894
|
"Date.america_indiana_petersburg?",
|
|
1770
1895
|
"Date.new(\"2024-03-05\").america_indiana_petersburg?",
|
|
@@ -1773,7 +1898,8 @@ class Code
|
|
|
1773
1898
|
},
|
|
1774
1899
|
"america_indiana_tell_city?" => {
|
|
1775
1900
|
name: "america_indiana_tell_city?",
|
|
1776
|
-
description:
|
|
1901
|
+
description:
|
|
1902
|
+
"returns whether the current time zone is america/indiana/tell_city.",
|
|
1777
1903
|
examples: [
|
|
1778
1904
|
"Date.america_indiana_tell_city?",
|
|
1779
1905
|
"Date.new(\"2024-03-05\").america_indiana_tell_city?",
|
|
@@ -1782,7 +1908,8 @@ class Code
|
|
|
1782
1908
|
},
|
|
1783
1909
|
"america_indiana_vevay?" => {
|
|
1784
1910
|
name: "america_indiana_vevay?",
|
|
1785
|
-
description:
|
|
1911
|
+
description:
|
|
1912
|
+
"returns whether the current time zone is america/indiana/vevay.",
|
|
1786
1913
|
examples: [
|
|
1787
1914
|
"Date.america_indiana_vevay?",
|
|
1788
1915
|
"Date.new(\"2024-03-05\").america_indiana_vevay?",
|
|
@@ -1791,7 +1918,8 @@ class Code
|
|
|
1791
1918
|
},
|
|
1792
1919
|
"america_indiana_vincennes?" => {
|
|
1793
1920
|
name: "america_indiana_vincennes?",
|
|
1794
|
-
description:
|
|
1921
|
+
description:
|
|
1922
|
+
"returns whether the current time zone is america/indiana/vincennes.",
|
|
1795
1923
|
examples: [
|
|
1796
1924
|
"Date.america_indiana_vincennes?",
|
|
1797
1925
|
"Date.new(\"2024-03-05\").america_indiana_vincennes?",
|
|
@@ -1800,7 +1928,8 @@ class Code
|
|
|
1800
1928
|
},
|
|
1801
1929
|
"america_indiana_winamac?" => {
|
|
1802
1930
|
name: "america_indiana_winamac?",
|
|
1803
|
-
description:
|
|
1931
|
+
description:
|
|
1932
|
+
"returns whether the current time zone is america/indiana/winamac.",
|
|
1804
1933
|
examples: [
|
|
1805
1934
|
"Date.america_indiana_winamac?",
|
|
1806
1935
|
"Date.new(\"2024-03-05\").america_indiana_winamac?",
|
|
@@ -1809,7 +1938,8 @@ class Code
|
|
|
1809
1938
|
},
|
|
1810
1939
|
"america_indianapolis?" => {
|
|
1811
1940
|
name: "america_indianapolis?",
|
|
1812
|
-
description:
|
|
1941
|
+
description:
|
|
1942
|
+
"returns whether the current time zone is america/indianapolis.",
|
|
1813
1943
|
examples: [
|
|
1814
1944
|
"Date.america_indianapolis?",
|
|
1815
1945
|
"Date.new(\"2024-03-05\").america_indianapolis?",
|
|
@@ -1818,7 +1948,8 @@ class Code
|
|
|
1818
1948
|
},
|
|
1819
1949
|
"america_inuvik?" => {
|
|
1820
1950
|
name: "america_inuvik?",
|
|
1821
|
-
description:
|
|
1951
|
+
description:
|
|
1952
|
+
"returns whether the current time zone is america/inuvik.",
|
|
1822
1953
|
examples: [
|
|
1823
1954
|
"Date.america_inuvik?",
|
|
1824
1955
|
"Date.new(\"2024-03-05\").america_inuvik?",
|
|
@@ -1827,7 +1958,8 @@ class Code
|
|
|
1827
1958
|
},
|
|
1828
1959
|
"america_iqaluit?" => {
|
|
1829
1960
|
name: "america_iqaluit?",
|
|
1830
|
-
description:
|
|
1961
|
+
description:
|
|
1962
|
+
"returns whether the current time zone is america/iqaluit.",
|
|
1831
1963
|
examples: [
|
|
1832
1964
|
"Date.america_iqaluit?",
|
|
1833
1965
|
"Date.new(\"2024-03-05\").america_iqaluit?",
|
|
@@ -1836,7 +1968,8 @@ class Code
|
|
|
1836
1968
|
},
|
|
1837
1969
|
"america_jamaica?" => {
|
|
1838
1970
|
name: "america_jamaica?",
|
|
1839
|
-
description:
|
|
1971
|
+
description:
|
|
1972
|
+
"returns whether the current time zone is america/jamaica.",
|
|
1840
1973
|
examples: [
|
|
1841
1974
|
"Date.america_jamaica?",
|
|
1842
1975
|
"Date.new(\"2024-03-05\").america_jamaica?",
|
|
@@ -1845,7 +1978,8 @@ class Code
|
|
|
1845
1978
|
},
|
|
1846
1979
|
"america_jujuy?" => {
|
|
1847
1980
|
name: "america_jujuy?",
|
|
1848
|
-
description:
|
|
1981
|
+
description:
|
|
1982
|
+
"returns whether the current time zone is america/jujuy.",
|
|
1849
1983
|
examples: [
|
|
1850
1984
|
"Date.america_jujuy?",
|
|
1851
1985
|
"Date.new(\"2024-03-05\").america_jujuy?",
|
|
@@ -1854,7 +1988,8 @@ class Code
|
|
|
1854
1988
|
},
|
|
1855
1989
|
"america_juneau?" => {
|
|
1856
1990
|
name: "america_juneau?",
|
|
1857
|
-
description:
|
|
1991
|
+
description:
|
|
1992
|
+
"returns whether the current time zone is america/juneau.",
|
|
1858
1993
|
examples: [
|
|
1859
1994
|
"Date.america_juneau?",
|
|
1860
1995
|
"Date.new(\"2024-03-05\").america_juneau?",
|
|
@@ -1863,7 +1998,8 @@ class Code
|
|
|
1863
1998
|
},
|
|
1864
1999
|
"america_kentucky_louisville?" => {
|
|
1865
2000
|
name: "america_kentucky_louisville?",
|
|
1866
|
-
description:
|
|
2001
|
+
description:
|
|
2002
|
+
"returns whether the current time zone is america/kentucky/louisville.",
|
|
1867
2003
|
examples: [
|
|
1868
2004
|
"Date.america_kentucky_louisville?",
|
|
1869
2005
|
"Date.new(\"2024-03-05\").america_kentucky_louisville?",
|
|
@@ -1872,7 +2008,8 @@ class Code
|
|
|
1872
2008
|
},
|
|
1873
2009
|
"america_kentucky_monticello?" => {
|
|
1874
2010
|
name: "america_kentucky_monticello?",
|
|
1875
|
-
description:
|
|
2011
|
+
description:
|
|
2012
|
+
"returns whether the current time zone is america/kentucky/monticello.",
|
|
1876
2013
|
examples: [
|
|
1877
2014
|
"Date.america_kentucky_monticello?",
|
|
1878
2015
|
"Date.new(\"2024-03-05\").america_kentucky_monticello?",
|
|
@@ -1881,7 +2018,8 @@ class Code
|
|
|
1881
2018
|
},
|
|
1882
2019
|
"america_knox_in?" => {
|
|
1883
2020
|
name: "america_knox_in?",
|
|
1884
|
-
description:
|
|
2021
|
+
description:
|
|
2022
|
+
"returns whether the current time zone is america/knox_in.",
|
|
1885
2023
|
examples: [
|
|
1886
2024
|
"Date.america_knox_in?",
|
|
1887
2025
|
"Date.new(\"2024-03-05\").america_knox_in?",
|
|
@@ -1890,7 +2028,8 @@ class Code
|
|
|
1890
2028
|
},
|
|
1891
2029
|
"america_kralendijk?" => {
|
|
1892
2030
|
name: "america_kralendijk?",
|
|
1893
|
-
description:
|
|
2031
|
+
description:
|
|
2032
|
+
"returns whether the current time zone is america/kralendijk.",
|
|
1894
2033
|
examples: [
|
|
1895
2034
|
"Date.america_kralendijk?",
|
|
1896
2035
|
"Date.new(\"2024-03-05\").america_kralendijk?",
|
|
@@ -1899,7 +2038,8 @@ class Code
|
|
|
1899
2038
|
},
|
|
1900
2039
|
"america_la_paz?" => {
|
|
1901
2040
|
name: "america_la_paz?",
|
|
1902
|
-
description:
|
|
2041
|
+
description:
|
|
2042
|
+
"returns whether the current time zone is america/la_paz.",
|
|
1903
2043
|
examples: [
|
|
1904
2044
|
"Date.america_la_paz?",
|
|
1905
2045
|
"Date.new(\"2024-03-05\").america_la_paz?",
|
|
@@ -1917,7 +2057,8 @@ class Code
|
|
|
1917
2057
|
},
|
|
1918
2058
|
"america_los_angeles?" => {
|
|
1919
2059
|
name: "america_los_angeles?",
|
|
1920
|
-
description:
|
|
2060
|
+
description:
|
|
2061
|
+
"returns whether the current time zone is america/los_angeles.",
|
|
1921
2062
|
examples: [
|
|
1922
2063
|
"Date.america_los_angeles?",
|
|
1923
2064
|
"Date.new(\"2024-03-05\").america_los_angeles?",
|
|
@@ -1926,7 +2067,8 @@ class Code
|
|
|
1926
2067
|
},
|
|
1927
2068
|
"america_louisville?" => {
|
|
1928
2069
|
name: "america_louisville?",
|
|
1929
|
-
description:
|
|
2070
|
+
description:
|
|
2071
|
+
"returns whether the current time zone is america/louisville.",
|
|
1930
2072
|
examples: [
|
|
1931
2073
|
"Date.america_louisville?",
|
|
1932
2074
|
"Date.new(\"2024-03-05\").america_louisville?",
|
|
@@ -1935,7 +2077,8 @@ class Code
|
|
|
1935
2077
|
},
|
|
1936
2078
|
"america_lower_princes?" => {
|
|
1937
2079
|
name: "america_lower_princes?",
|
|
1938
|
-
description:
|
|
2080
|
+
description:
|
|
2081
|
+
"returns whether the current time zone is america/lower_princes.",
|
|
1939
2082
|
examples: [
|
|
1940
2083
|
"Date.america_lower_princes?",
|
|
1941
2084
|
"Date.new(\"2024-03-05\").america_lower_princes?",
|
|
@@ -1944,7 +2087,8 @@ class Code
|
|
|
1944
2087
|
},
|
|
1945
2088
|
"america_maceio?" => {
|
|
1946
2089
|
name: "america_maceio?",
|
|
1947
|
-
description:
|
|
2090
|
+
description:
|
|
2091
|
+
"returns whether the current time zone is america/maceio.",
|
|
1948
2092
|
examples: [
|
|
1949
2093
|
"Date.america_maceio?",
|
|
1950
2094
|
"Date.new(\"2024-03-05\").america_maceio?",
|
|
@@ -1953,7 +2097,8 @@ class Code
|
|
|
1953
2097
|
},
|
|
1954
2098
|
"america_managua?" => {
|
|
1955
2099
|
name: "america_managua?",
|
|
1956
|
-
description:
|
|
2100
|
+
description:
|
|
2101
|
+
"returns whether the current time zone is america/managua.",
|
|
1957
2102
|
examples: [
|
|
1958
2103
|
"Date.america_managua?",
|
|
1959
2104
|
"Date.new(\"2024-03-05\").america_managua?",
|
|
@@ -1962,7 +2107,8 @@ class Code
|
|
|
1962
2107
|
},
|
|
1963
2108
|
"america_manaus?" => {
|
|
1964
2109
|
name: "america_manaus?",
|
|
1965
|
-
description:
|
|
2110
|
+
description:
|
|
2111
|
+
"returns whether the current time zone is america/manaus.",
|
|
1966
2112
|
examples: [
|
|
1967
2113
|
"Date.america_manaus?",
|
|
1968
2114
|
"Date.new(\"2024-03-05\").america_manaus?",
|
|
@@ -1971,7 +2117,8 @@ class Code
|
|
|
1971
2117
|
},
|
|
1972
2118
|
"america_marigot?" => {
|
|
1973
2119
|
name: "america_marigot?",
|
|
1974
|
-
description:
|
|
2120
|
+
description:
|
|
2121
|
+
"returns whether the current time zone is america/marigot.",
|
|
1975
2122
|
examples: [
|
|
1976
2123
|
"Date.america_marigot?",
|
|
1977
2124
|
"Date.new(\"2024-03-05\").america_marigot?",
|
|
@@ -1980,7 +2127,8 @@ class Code
|
|
|
1980
2127
|
},
|
|
1981
2128
|
"america_martinique?" => {
|
|
1982
2129
|
name: "america_martinique?",
|
|
1983
|
-
description:
|
|
2130
|
+
description:
|
|
2131
|
+
"returns whether the current time zone is america/martinique.",
|
|
1984
2132
|
examples: [
|
|
1985
2133
|
"Date.america_martinique?",
|
|
1986
2134
|
"Date.new(\"2024-03-05\").america_martinique?",
|
|
@@ -1989,7 +2137,8 @@ class Code
|
|
|
1989
2137
|
},
|
|
1990
2138
|
"america_matamoros?" => {
|
|
1991
2139
|
name: "america_matamoros?",
|
|
1992
|
-
description:
|
|
2140
|
+
description:
|
|
2141
|
+
"returns whether the current time zone is america/matamoros.",
|
|
1993
2142
|
examples: [
|
|
1994
2143
|
"Date.america_matamoros?",
|
|
1995
2144
|
"Date.new(\"2024-03-05\").america_matamoros?",
|
|
@@ -1998,7 +2147,8 @@ class Code
|
|
|
1998
2147
|
},
|
|
1999
2148
|
"america_mazatlan?" => {
|
|
2000
2149
|
name: "america_mazatlan?",
|
|
2001
|
-
description:
|
|
2150
|
+
description:
|
|
2151
|
+
"returns whether the current time zone is america/mazatlan.",
|
|
2002
2152
|
examples: [
|
|
2003
2153
|
"Date.america_mazatlan?",
|
|
2004
2154
|
"Date.new(\"2024-03-05\").america_mazatlan?",
|
|
@@ -2007,7 +2157,8 @@ class Code
|
|
|
2007
2157
|
},
|
|
2008
2158
|
"america_mendoza?" => {
|
|
2009
2159
|
name: "america_mendoza?",
|
|
2010
|
-
description:
|
|
2160
|
+
description:
|
|
2161
|
+
"returns whether the current time zone is america/mendoza.",
|
|
2011
2162
|
examples: [
|
|
2012
2163
|
"Date.america_mendoza?",
|
|
2013
2164
|
"Date.new(\"2024-03-05\").america_mendoza?",
|
|
@@ -2016,7 +2167,8 @@ class Code
|
|
|
2016
2167
|
},
|
|
2017
2168
|
"america_menominee?" => {
|
|
2018
2169
|
name: "america_menominee?",
|
|
2019
|
-
description:
|
|
2170
|
+
description:
|
|
2171
|
+
"returns whether the current time zone is america/menominee.",
|
|
2020
2172
|
examples: [
|
|
2021
2173
|
"Date.america_menominee?",
|
|
2022
2174
|
"Date.new(\"2024-03-05\").america_menominee?",
|
|
@@ -2025,7 +2177,8 @@ class Code
|
|
|
2025
2177
|
},
|
|
2026
2178
|
"america_merida?" => {
|
|
2027
2179
|
name: "america_merida?",
|
|
2028
|
-
description:
|
|
2180
|
+
description:
|
|
2181
|
+
"returns whether the current time zone is america/merida.",
|
|
2029
2182
|
examples: [
|
|
2030
2183
|
"Date.america_merida?",
|
|
2031
2184
|
"Date.new(\"2024-03-05\").america_merida?",
|
|
@@ -2034,7 +2187,8 @@ class Code
|
|
|
2034
2187
|
},
|
|
2035
2188
|
"america_metlakatla?" => {
|
|
2036
2189
|
name: "america_metlakatla?",
|
|
2037
|
-
description:
|
|
2190
|
+
description:
|
|
2191
|
+
"returns whether the current time zone is america/metlakatla.",
|
|
2038
2192
|
examples: [
|
|
2039
2193
|
"Date.america_metlakatla?",
|
|
2040
2194
|
"Date.new(\"2024-03-05\").america_metlakatla?",
|
|
@@ -2043,7 +2197,8 @@ class Code
|
|
|
2043
2197
|
},
|
|
2044
2198
|
"america_mexico_city?" => {
|
|
2045
2199
|
name: "america_mexico_city?",
|
|
2046
|
-
description:
|
|
2200
|
+
description:
|
|
2201
|
+
"returns whether the current time zone is america/mexico_city.",
|
|
2047
2202
|
examples: [
|
|
2048
2203
|
"Date.america_mexico_city?",
|
|
2049
2204
|
"Date.new(\"2024-03-05\").america_mexico_city?",
|
|
@@ -2052,7 +2207,8 @@ class Code
|
|
|
2052
2207
|
},
|
|
2053
2208
|
"america_miquelon?" => {
|
|
2054
2209
|
name: "america_miquelon?",
|
|
2055
|
-
description:
|
|
2210
|
+
description:
|
|
2211
|
+
"returns whether the current time zone is america/miquelon.",
|
|
2056
2212
|
examples: [
|
|
2057
2213
|
"Date.america_miquelon?",
|
|
2058
2214
|
"Date.new(\"2024-03-05\").america_miquelon?",
|
|
@@ -2061,7 +2217,8 @@ class Code
|
|
|
2061
2217
|
},
|
|
2062
2218
|
"america_moncton?" => {
|
|
2063
2219
|
name: "america_moncton?",
|
|
2064
|
-
description:
|
|
2220
|
+
description:
|
|
2221
|
+
"returns whether the current time zone is america/moncton.",
|
|
2065
2222
|
examples: [
|
|
2066
2223
|
"Date.america_moncton?",
|
|
2067
2224
|
"Date.new(\"2024-03-05\").america_moncton?",
|
|
@@ -2070,7 +2227,8 @@ class Code
|
|
|
2070
2227
|
},
|
|
2071
2228
|
"america_monterrey?" => {
|
|
2072
2229
|
name: "america_monterrey?",
|
|
2073
|
-
description:
|
|
2230
|
+
description:
|
|
2231
|
+
"returns whether the current time zone is america/monterrey.",
|
|
2074
2232
|
examples: [
|
|
2075
2233
|
"Date.america_monterrey?",
|
|
2076
2234
|
"Date.new(\"2024-03-05\").america_monterrey?",
|
|
@@ -2079,7 +2237,8 @@ class Code
|
|
|
2079
2237
|
},
|
|
2080
2238
|
"america_montevideo?" => {
|
|
2081
2239
|
name: "america_montevideo?",
|
|
2082
|
-
description:
|
|
2240
|
+
description:
|
|
2241
|
+
"returns whether the current time zone is america/montevideo.",
|
|
2083
2242
|
examples: [
|
|
2084
2243
|
"Date.america_montevideo?",
|
|
2085
2244
|
"Date.new(\"2024-03-05\").america_montevideo?",
|
|
@@ -2088,7 +2247,8 @@ class Code
|
|
|
2088
2247
|
},
|
|
2089
2248
|
"america_montreal?" => {
|
|
2090
2249
|
name: "america_montreal?",
|
|
2091
|
-
description:
|
|
2250
|
+
description:
|
|
2251
|
+
"returns whether the current time zone is america/montreal.",
|
|
2092
2252
|
examples: [
|
|
2093
2253
|
"Date.america_montreal?",
|
|
2094
2254
|
"Date.new(\"2024-03-05\").america_montreal?",
|
|
@@ -2097,7 +2257,8 @@ class Code
|
|
|
2097
2257
|
},
|
|
2098
2258
|
"america_montserrat?" => {
|
|
2099
2259
|
name: "america_montserrat?",
|
|
2100
|
-
description:
|
|
2260
|
+
description:
|
|
2261
|
+
"returns whether the current time zone is america/montserrat.",
|
|
2101
2262
|
examples: [
|
|
2102
2263
|
"Date.america_montserrat?",
|
|
2103
2264
|
"Date.new(\"2024-03-05\").america_montserrat?",
|
|
@@ -2106,7 +2267,8 @@ class Code
|
|
|
2106
2267
|
},
|
|
2107
2268
|
"america_nassau?" => {
|
|
2108
2269
|
name: "america_nassau?",
|
|
2109
|
-
description:
|
|
2270
|
+
description:
|
|
2271
|
+
"returns whether the current time zone is america/nassau.",
|
|
2110
2272
|
examples: [
|
|
2111
2273
|
"Date.america_nassau?",
|
|
2112
2274
|
"Date.new(\"2024-03-05\").america_nassau?",
|
|
@@ -2115,7 +2277,8 @@ class Code
|
|
|
2115
2277
|
},
|
|
2116
2278
|
"america_new_york?" => {
|
|
2117
2279
|
name: "america_new_york?",
|
|
2118
|
-
description:
|
|
2280
|
+
description:
|
|
2281
|
+
"returns whether the current time zone is america/new_york.",
|
|
2119
2282
|
examples: [
|
|
2120
2283
|
"Date.america_new_york?",
|
|
2121
2284
|
"Date.new(\"2024-03-05\").america_new_york?",
|
|
@@ -2124,7 +2287,8 @@ class Code
|
|
|
2124
2287
|
},
|
|
2125
2288
|
"america_nipigon?" => {
|
|
2126
2289
|
name: "america_nipigon?",
|
|
2127
|
-
description:
|
|
2290
|
+
description:
|
|
2291
|
+
"returns whether the current time zone is america/nipigon.",
|
|
2128
2292
|
examples: [
|
|
2129
2293
|
"Date.america_nipigon?",
|
|
2130
2294
|
"Date.new(\"2024-03-05\").america_nipigon?",
|
|
@@ -2142,7 +2306,8 @@ class Code
|
|
|
2142
2306
|
},
|
|
2143
2307
|
"america_noronha?" => {
|
|
2144
2308
|
name: "america_noronha?",
|
|
2145
|
-
description:
|
|
2309
|
+
description:
|
|
2310
|
+
"returns whether the current time zone is america/noronha.",
|
|
2146
2311
|
examples: [
|
|
2147
2312
|
"Date.america_noronha?",
|
|
2148
2313
|
"Date.new(\"2024-03-05\").america_noronha?",
|
|
@@ -2151,7 +2316,8 @@ class Code
|
|
|
2151
2316
|
},
|
|
2152
2317
|
"america_north_dakota_beulah?" => {
|
|
2153
2318
|
name: "america_north_dakota_beulah?",
|
|
2154
|
-
description:
|
|
2319
|
+
description:
|
|
2320
|
+
"returns whether the current time zone is america/north_dakota/beulah.",
|
|
2155
2321
|
examples: [
|
|
2156
2322
|
"Date.america_north_dakota_beulah?",
|
|
2157
2323
|
"Date.new(\"2024-03-05\").america_north_dakota_beulah?",
|
|
@@ -2160,7 +2326,8 @@ class Code
|
|
|
2160
2326
|
},
|
|
2161
2327
|
"america_north_dakota_center?" => {
|
|
2162
2328
|
name: "america_north_dakota_center?",
|
|
2163
|
-
description:
|
|
2329
|
+
description:
|
|
2330
|
+
"returns whether the current time zone is america/north_dakota/center.",
|
|
2164
2331
|
examples: [
|
|
2165
2332
|
"Date.america_north_dakota_center?",
|
|
2166
2333
|
"Date.new(\"2024-03-05\").america_north_dakota_center?",
|
|
@@ -2169,7 +2336,8 @@ class Code
|
|
|
2169
2336
|
},
|
|
2170
2337
|
"america_north_dakota_new_salem?" => {
|
|
2171
2338
|
name: "america_north_dakota_new_salem?",
|
|
2172
|
-
description:
|
|
2339
|
+
description:
|
|
2340
|
+
"returns whether the current time zone is america/north_dakota/new_salem.",
|
|
2173
2341
|
examples: [
|
|
2174
2342
|
"Date.america_north_dakota_new_salem?",
|
|
2175
2343
|
"Date.new(\"2024-03-05\").america_north_dakota_new_salem?",
|
|
@@ -2187,7 +2355,8 @@ class Code
|
|
|
2187
2355
|
},
|
|
2188
2356
|
"america_ojinaga?" => {
|
|
2189
2357
|
name: "america_ojinaga?",
|
|
2190
|
-
description:
|
|
2358
|
+
description:
|
|
2359
|
+
"returns whether the current time zone is america/ojinaga.",
|
|
2191
2360
|
examples: [
|
|
2192
2361
|
"Date.america_ojinaga?",
|
|
2193
2362
|
"Date.new(\"2024-03-05\").america_ojinaga?",
|
|
@@ -2196,7 +2365,8 @@ class Code
|
|
|
2196
2365
|
},
|
|
2197
2366
|
"america_panama?" => {
|
|
2198
2367
|
name: "america_panama?",
|
|
2199
|
-
description:
|
|
2368
|
+
description:
|
|
2369
|
+
"returns whether the current time zone is america/panama.",
|
|
2200
2370
|
examples: [
|
|
2201
2371
|
"Date.america_panama?",
|
|
2202
2372
|
"Date.new(\"2024-03-05\").america_panama?",
|
|
@@ -2205,7 +2375,8 @@ class Code
|
|
|
2205
2375
|
},
|
|
2206
2376
|
"america_pangnirtung?" => {
|
|
2207
2377
|
name: "america_pangnirtung?",
|
|
2208
|
-
description:
|
|
2378
|
+
description:
|
|
2379
|
+
"returns whether the current time zone is america/pangnirtung.",
|
|
2209
2380
|
examples: [
|
|
2210
2381
|
"Date.america_pangnirtung?",
|
|
2211
2382
|
"Date.new(\"2024-03-05\").america_pangnirtung?",
|
|
@@ -2214,7 +2385,8 @@ class Code
|
|
|
2214
2385
|
},
|
|
2215
2386
|
"america_paramaribo?" => {
|
|
2216
2387
|
name: "america_paramaribo?",
|
|
2217
|
-
description:
|
|
2388
|
+
description:
|
|
2389
|
+
"returns whether the current time zone is america/paramaribo.",
|
|
2218
2390
|
examples: [
|
|
2219
2391
|
"Date.america_paramaribo?",
|
|
2220
2392
|
"Date.new(\"2024-03-05\").america_paramaribo?",
|
|
@@ -2223,7 +2395,8 @@ class Code
|
|
|
2223
2395
|
},
|
|
2224
2396
|
"america_phoenix?" => {
|
|
2225
2397
|
name: "america_phoenix?",
|
|
2226
|
-
description:
|
|
2398
|
+
description:
|
|
2399
|
+
"returns whether the current time zone is america/phoenix.",
|
|
2227
2400
|
examples: [
|
|
2228
2401
|
"Date.america_phoenix?",
|
|
2229
2402
|
"Date.new(\"2024-03-05\").america_phoenix?",
|
|
@@ -2232,7 +2405,8 @@ class Code
|
|
|
2232
2405
|
},
|
|
2233
2406
|
"america_port_minus_au_minus_prince?" => {
|
|
2234
2407
|
name: "america_port_minus_au_minus_prince?",
|
|
2235
|
-
description:
|
|
2408
|
+
description:
|
|
2409
|
+
"returns whether the current time zone is america/port-au-prince.",
|
|
2236
2410
|
examples: [
|
|
2237
2411
|
"Date.america_port_minus_au_minus_prince?",
|
|
2238
2412
|
"Date.new(\"2024-03-05\").america_port_minus_au_minus_prince?",
|
|
@@ -2241,7 +2415,8 @@ class Code
|
|
|
2241
2415
|
},
|
|
2242
2416
|
"america_port_of_spain?" => {
|
|
2243
2417
|
name: "america_port_of_spain?",
|
|
2244
|
-
description:
|
|
2418
|
+
description:
|
|
2419
|
+
"returns whether the current time zone is america/port_of_spain.",
|
|
2245
2420
|
examples: [
|
|
2246
2421
|
"Date.america_port_of_spain?",
|
|
2247
2422
|
"Date.new(\"2024-03-05\").america_port_of_spain?",
|
|
@@ -2250,7 +2425,8 @@ class Code
|
|
|
2250
2425
|
},
|
|
2251
2426
|
"america_porto_acre?" => {
|
|
2252
2427
|
name: "america_porto_acre?",
|
|
2253
|
-
description:
|
|
2428
|
+
description:
|
|
2429
|
+
"returns whether the current time zone is america/porto_acre.",
|
|
2254
2430
|
examples: [
|
|
2255
2431
|
"Date.america_porto_acre?",
|
|
2256
2432
|
"Date.new(\"2024-03-05\").america_porto_acre?",
|
|
@@ -2259,7 +2435,8 @@ class Code
|
|
|
2259
2435
|
},
|
|
2260
2436
|
"america_porto_velho?" => {
|
|
2261
2437
|
name: "america_porto_velho?",
|
|
2262
|
-
description:
|
|
2438
|
+
description:
|
|
2439
|
+
"returns whether the current time zone is america/porto_velho.",
|
|
2263
2440
|
examples: [
|
|
2264
2441
|
"Date.america_porto_velho?",
|
|
2265
2442
|
"Date.new(\"2024-03-05\").america_porto_velho?",
|
|
@@ -2268,7 +2445,8 @@ class Code
|
|
|
2268
2445
|
},
|
|
2269
2446
|
"america_puerto_rico?" => {
|
|
2270
2447
|
name: "america_puerto_rico?",
|
|
2271
|
-
description:
|
|
2448
|
+
description:
|
|
2449
|
+
"returns whether the current time zone is america/puerto_rico.",
|
|
2272
2450
|
examples: [
|
|
2273
2451
|
"Date.america_puerto_rico?",
|
|
2274
2452
|
"Date.new(\"2024-03-05\").america_puerto_rico?",
|
|
@@ -2277,7 +2455,8 @@ class Code
|
|
|
2277
2455
|
},
|
|
2278
2456
|
"america_punta_arenas?" => {
|
|
2279
2457
|
name: "america_punta_arenas?",
|
|
2280
|
-
description:
|
|
2458
|
+
description:
|
|
2459
|
+
"returns whether the current time zone is america/punta_arenas.",
|
|
2281
2460
|
examples: [
|
|
2282
2461
|
"Date.america_punta_arenas?",
|
|
2283
2462
|
"Date.new(\"2024-03-05\").america_punta_arenas?",
|
|
@@ -2286,7 +2465,8 @@ class Code
|
|
|
2286
2465
|
},
|
|
2287
2466
|
"america_rainy_river?" => {
|
|
2288
2467
|
name: "america_rainy_river?",
|
|
2289
|
-
description:
|
|
2468
|
+
description:
|
|
2469
|
+
"returns whether the current time zone is america/rainy_river.",
|
|
2290
2470
|
examples: [
|
|
2291
2471
|
"Date.america_rainy_river?",
|
|
2292
2472
|
"Date.new(\"2024-03-05\").america_rainy_river?",
|
|
@@ -2295,7 +2475,8 @@ class Code
|
|
|
2295
2475
|
},
|
|
2296
2476
|
"america_rankin_inlet?" => {
|
|
2297
2477
|
name: "america_rankin_inlet?",
|
|
2298
|
-
description:
|
|
2478
|
+
description:
|
|
2479
|
+
"returns whether the current time zone is america/rankin_inlet.",
|
|
2299
2480
|
examples: [
|
|
2300
2481
|
"Date.america_rankin_inlet?",
|
|
2301
2482
|
"Date.new(\"2024-03-05\").america_rankin_inlet?",
|
|
@@ -2304,7 +2485,8 @@ class Code
|
|
|
2304
2485
|
},
|
|
2305
2486
|
"america_recife?" => {
|
|
2306
2487
|
name: "america_recife?",
|
|
2307
|
-
description:
|
|
2488
|
+
description:
|
|
2489
|
+
"returns whether the current time zone is america/recife.",
|
|
2308
2490
|
examples: [
|
|
2309
2491
|
"Date.america_recife?",
|
|
2310
2492
|
"Date.new(\"2024-03-05\").america_recife?",
|
|
@@ -2313,7 +2495,8 @@ class Code
|
|
|
2313
2495
|
},
|
|
2314
2496
|
"america_regina?" => {
|
|
2315
2497
|
name: "america_regina?",
|
|
2316
|
-
description:
|
|
2498
|
+
description:
|
|
2499
|
+
"returns whether the current time zone is america/regina.",
|
|
2317
2500
|
examples: [
|
|
2318
2501
|
"Date.america_regina?",
|
|
2319
2502
|
"Date.new(\"2024-03-05\").america_regina?",
|
|
@@ -2322,7 +2505,8 @@ class Code
|
|
|
2322
2505
|
},
|
|
2323
2506
|
"america_resolute?" => {
|
|
2324
2507
|
name: "america_resolute?",
|
|
2325
|
-
description:
|
|
2508
|
+
description:
|
|
2509
|
+
"returns whether the current time zone is america/resolute.",
|
|
2326
2510
|
examples: [
|
|
2327
2511
|
"Date.america_resolute?",
|
|
2328
2512
|
"Date.new(\"2024-03-05\").america_resolute?",
|
|
@@ -2331,7 +2515,8 @@ class Code
|
|
|
2331
2515
|
},
|
|
2332
2516
|
"america_rio_branco?" => {
|
|
2333
2517
|
name: "america_rio_branco?",
|
|
2334
|
-
description:
|
|
2518
|
+
description:
|
|
2519
|
+
"returns whether the current time zone is america/rio_branco.",
|
|
2335
2520
|
examples: [
|
|
2336
2521
|
"Date.america_rio_branco?",
|
|
2337
2522
|
"Date.new(\"2024-03-05\").america_rio_branco?",
|
|
@@ -2340,7 +2525,8 @@ class Code
|
|
|
2340
2525
|
},
|
|
2341
2526
|
"america_rosario?" => {
|
|
2342
2527
|
name: "america_rosario?",
|
|
2343
|
-
description:
|
|
2528
|
+
description:
|
|
2529
|
+
"returns whether the current time zone is america/rosario.",
|
|
2344
2530
|
examples: [
|
|
2345
2531
|
"Date.america_rosario?",
|
|
2346
2532
|
"Date.new(\"2024-03-05\").america_rosario?",
|
|
@@ -2349,7 +2535,8 @@ class Code
|
|
|
2349
2535
|
},
|
|
2350
2536
|
"america_santa_isabel?" => {
|
|
2351
2537
|
name: "america_santa_isabel?",
|
|
2352
|
-
description:
|
|
2538
|
+
description:
|
|
2539
|
+
"returns whether the current time zone is america/santa_isabel.",
|
|
2353
2540
|
examples: [
|
|
2354
2541
|
"Date.america_santa_isabel?",
|
|
2355
2542
|
"Date.new(\"2024-03-05\").america_santa_isabel?",
|
|
@@ -2358,7 +2545,8 @@ class Code
|
|
|
2358
2545
|
},
|
|
2359
2546
|
"america_santarem?" => {
|
|
2360
2547
|
name: "america_santarem?",
|
|
2361
|
-
description:
|
|
2548
|
+
description:
|
|
2549
|
+
"returns whether the current time zone is america/santarem.",
|
|
2362
2550
|
examples: [
|
|
2363
2551
|
"Date.america_santarem?",
|
|
2364
2552
|
"Date.new(\"2024-03-05\").america_santarem?",
|
|
@@ -2367,7 +2555,8 @@ class Code
|
|
|
2367
2555
|
},
|
|
2368
2556
|
"america_santiago?" => {
|
|
2369
2557
|
name: "america_santiago?",
|
|
2370
|
-
description:
|
|
2558
|
+
description:
|
|
2559
|
+
"returns whether the current time zone is america/santiago.",
|
|
2371
2560
|
examples: [
|
|
2372
2561
|
"Date.america_santiago?",
|
|
2373
2562
|
"Date.new(\"2024-03-05\").america_santiago?",
|
|
@@ -2376,7 +2565,8 @@ class Code
|
|
|
2376
2565
|
},
|
|
2377
2566
|
"america_santo_domingo?" => {
|
|
2378
2567
|
name: "america_santo_domingo?",
|
|
2379
|
-
description:
|
|
2568
|
+
description:
|
|
2569
|
+
"returns whether the current time zone is america/santo_domingo.",
|
|
2380
2570
|
examples: [
|
|
2381
2571
|
"Date.america_santo_domingo?",
|
|
2382
2572
|
"Date.new(\"2024-03-05\").america_santo_domingo?",
|
|
@@ -2385,7 +2575,8 @@ class Code
|
|
|
2385
2575
|
},
|
|
2386
2576
|
"america_sao_paulo?" => {
|
|
2387
2577
|
name: "america_sao_paulo?",
|
|
2388
|
-
description:
|
|
2578
|
+
description:
|
|
2579
|
+
"returns whether the current time zone is america/sao_paulo.",
|
|
2389
2580
|
examples: [
|
|
2390
2581
|
"Date.america_sao_paulo?",
|
|
2391
2582
|
"Date.new(\"2024-03-05\").america_sao_paulo?",
|
|
@@ -2394,7 +2585,8 @@ class Code
|
|
|
2394
2585
|
},
|
|
2395
2586
|
"america_scoresbysund?" => {
|
|
2396
2587
|
name: "america_scoresbysund?",
|
|
2397
|
-
description:
|
|
2588
|
+
description:
|
|
2589
|
+
"returns whether the current time zone is america/scoresbysund.",
|
|
2398
2590
|
examples: [
|
|
2399
2591
|
"Date.america_scoresbysund?",
|
|
2400
2592
|
"Date.new(\"2024-03-05\").america_scoresbysund?",
|
|
@@ -2403,7 +2595,8 @@ class Code
|
|
|
2403
2595
|
},
|
|
2404
2596
|
"america_shiprock?" => {
|
|
2405
2597
|
name: "america_shiprock?",
|
|
2406
|
-
description:
|
|
2598
|
+
description:
|
|
2599
|
+
"returns whether the current time zone is america/shiprock.",
|
|
2407
2600
|
examples: [
|
|
2408
2601
|
"Date.america_shiprock?",
|
|
2409
2602
|
"Date.new(\"2024-03-05\").america_shiprock?",
|
|
@@ -2412,7 +2605,8 @@ class Code
|
|
|
2412
2605
|
},
|
|
2413
2606
|
"america_sitka?" => {
|
|
2414
2607
|
name: "america_sitka?",
|
|
2415
|
-
description:
|
|
2608
|
+
description:
|
|
2609
|
+
"returns whether the current time zone is america/sitka.",
|
|
2416
2610
|
examples: [
|
|
2417
2611
|
"Date.america_sitka?",
|
|
2418
2612
|
"Date.new(\"2024-03-05\").america_sitka?",
|
|
@@ -2421,7 +2615,8 @@ class Code
|
|
|
2421
2615
|
},
|
|
2422
2616
|
"america_st_barthelemy?" => {
|
|
2423
2617
|
name: "america_st_barthelemy?",
|
|
2424
|
-
description:
|
|
2618
|
+
description:
|
|
2619
|
+
"returns whether the current time zone is america/st_barthelemy.",
|
|
2425
2620
|
examples: [
|
|
2426
2621
|
"Date.america_st_barthelemy?",
|
|
2427
2622
|
"Date.new(\"2024-03-05\").america_st_barthelemy?",
|
|
@@ -2430,7 +2625,8 @@ class Code
|
|
|
2430
2625
|
},
|
|
2431
2626
|
"america_st_johns?" => {
|
|
2432
2627
|
name: "america_st_johns?",
|
|
2433
|
-
description:
|
|
2628
|
+
description:
|
|
2629
|
+
"returns whether the current time zone is america/st_johns.",
|
|
2434
2630
|
examples: [
|
|
2435
2631
|
"Date.america_st_johns?",
|
|
2436
2632
|
"Date.new(\"2024-03-05\").america_st_johns?",
|
|
@@ -2439,7 +2635,8 @@ class Code
|
|
|
2439
2635
|
},
|
|
2440
2636
|
"america_st_kitts?" => {
|
|
2441
2637
|
name: "america_st_kitts?",
|
|
2442
|
-
description:
|
|
2638
|
+
description:
|
|
2639
|
+
"returns whether the current time zone is america/st_kitts.",
|
|
2443
2640
|
examples: [
|
|
2444
2641
|
"Date.america_st_kitts?",
|
|
2445
2642
|
"Date.new(\"2024-03-05\").america_st_kitts?",
|
|
@@ -2448,7 +2645,8 @@ class Code
|
|
|
2448
2645
|
},
|
|
2449
2646
|
"america_st_lucia?" => {
|
|
2450
2647
|
name: "america_st_lucia?",
|
|
2451
|
-
description:
|
|
2648
|
+
description:
|
|
2649
|
+
"returns whether the current time zone is america/st_lucia.",
|
|
2452
2650
|
examples: [
|
|
2453
2651
|
"Date.america_st_lucia?",
|
|
2454
2652
|
"Date.new(\"2024-03-05\").america_st_lucia?",
|
|
@@ -2457,7 +2655,8 @@ class Code
|
|
|
2457
2655
|
},
|
|
2458
2656
|
"america_st_thomas?" => {
|
|
2459
2657
|
name: "america_st_thomas?",
|
|
2460
|
-
description:
|
|
2658
|
+
description:
|
|
2659
|
+
"returns whether the current time zone is america/st_thomas.",
|
|
2461
2660
|
examples: [
|
|
2462
2661
|
"Date.america_st_thomas?",
|
|
2463
2662
|
"Date.new(\"2024-03-05\").america_st_thomas?",
|
|
@@ -2466,7 +2665,8 @@ class Code
|
|
|
2466
2665
|
},
|
|
2467
2666
|
"america_st_vincent?" => {
|
|
2468
2667
|
name: "america_st_vincent?",
|
|
2469
|
-
description:
|
|
2668
|
+
description:
|
|
2669
|
+
"returns whether the current time zone is america/st_vincent.",
|
|
2470
2670
|
examples: [
|
|
2471
2671
|
"Date.america_st_vincent?",
|
|
2472
2672
|
"Date.new(\"2024-03-05\").america_st_vincent?",
|
|
@@ -2475,7 +2675,8 @@ class Code
|
|
|
2475
2675
|
},
|
|
2476
2676
|
"america_swift_current?" => {
|
|
2477
2677
|
name: "america_swift_current?",
|
|
2478
|
-
description:
|
|
2678
|
+
description:
|
|
2679
|
+
"returns whether the current time zone is america/swift_current.",
|
|
2479
2680
|
examples: [
|
|
2480
2681
|
"Date.america_swift_current?",
|
|
2481
2682
|
"Date.new(\"2024-03-05\").america_swift_current?",
|
|
@@ -2484,7 +2685,8 @@ class Code
|
|
|
2484
2685
|
},
|
|
2485
2686
|
"america_tegucigalpa?" => {
|
|
2486
2687
|
name: "america_tegucigalpa?",
|
|
2487
|
-
description:
|
|
2688
|
+
description:
|
|
2689
|
+
"returns whether the current time zone is america/tegucigalpa.",
|
|
2488
2690
|
examples: [
|
|
2489
2691
|
"Date.america_tegucigalpa?",
|
|
2490
2692
|
"Date.new(\"2024-03-05\").america_tegucigalpa?",
|
|
@@ -2493,7 +2695,8 @@ class Code
|
|
|
2493
2695
|
},
|
|
2494
2696
|
"america_thule?" => {
|
|
2495
2697
|
name: "america_thule?",
|
|
2496
|
-
description:
|
|
2698
|
+
description:
|
|
2699
|
+
"returns whether the current time zone is america/thule.",
|
|
2497
2700
|
examples: [
|
|
2498
2701
|
"Date.america_thule?",
|
|
2499
2702
|
"Date.new(\"2024-03-05\").america_thule?",
|
|
@@ -2502,7 +2705,8 @@ class Code
|
|
|
2502
2705
|
},
|
|
2503
2706
|
"america_thunder_bay?" => {
|
|
2504
2707
|
name: "america_thunder_bay?",
|
|
2505
|
-
description:
|
|
2708
|
+
description:
|
|
2709
|
+
"returns whether the current time zone is america/thunder_bay.",
|
|
2506
2710
|
examples: [
|
|
2507
2711
|
"Date.america_thunder_bay?",
|
|
2508
2712
|
"Date.new(\"2024-03-05\").america_thunder_bay?",
|
|
@@ -2511,7 +2715,8 @@ class Code
|
|
|
2511
2715
|
},
|
|
2512
2716
|
"america_tijuana?" => {
|
|
2513
2717
|
name: "america_tijuana?",
|
|
2514
|
-
description:
|
|
2718
|
+
description:
|
|
2719
|
+
"returns whether the current time zone is america/tijuana.",
|
|
2515
2720
|
examples: [
|
|
2516
2721
|
"Date.america_tijuana?",
|
|
2517
2722
|
"Date.new(\"2024-03-05\").america_tijuana?",
|
|
@@ -2520,7 +2725,8 @@ class Code
|
|
|
2520
2725
|
},
|
|
2521
2726
|
"america_toronto?" => {
|
|
2522
2727
|
name: "america_toronto?",
|
|
2523
|
-
description:
|
|
2728
|
+
description:
|
|
2729
|
+
"returns whether the current time zone is america/toronto.",
|
|
2524
2730
|
examples: [
|
|
2525
2731
|
"Date.america_toronto?",
|
|
2526
2732
|
"Date.new(\"2024-03-05\").america_toronto?",
|
|
@@ -2529,7 +2735,8 @@ class Code
|
|
|
2529
2735
|
},
|
|
2530
2736
|
"america_tortola?" => {
|
|
2531
2737
|
name: "america_tortola?",
|
|
2532
|
-
description:
|
|
2738
|
+
description:
|
|
2739
|
+
"returns whether the current time zone is america/tortola.",
|
|
2533
2740
|
examples: [
|
|
2534
2741
|
"Date.america_tortola?",
|
|
2535
2742
|
"Date.new(\"2024-03-05\").america_tortola?",
|
|
@@ -2538,7 +2745,8 @@ class Code
|
|
|
2538
2745
|
},
|
|
2539
2746
|
"america_vancouver?" => {
|
|
2540
2747
|
name: "america_vancouver?",
|
|
2541
|
-
description:
|
|
2748
|
+
description:
|
|
2749
|
+
"returns whether the current time zone is america/vancouver.",
|
|
2542
2750
|
examples: [
|
|
2543
2751
|
"Date.america_vancouver?",
|
|
2544
2752
|
"Date.new(\"2024-03-05\").america_vancouver?",
|
|
@@ -2547,7 +2755,8 @@ class Code
|
|
|
2547
2755
|
},
|
|
2548
2756
|
"america_virgin?" => {
|
|
2549
2757
|
name: "america_virgin?",
|
|
2550
|
-
description:
|
|
2758
|
+
description:
|
|
2759
|
+
"returns whether the current time zone is america/virgin.",
|
|
2551
2760
|
examples: [
|
|
2552
2761
|
"Date.america_virgin?",
|
|
2553
2762
|
"Date.new(\"2024-03-05\").america_virgin?",
|
|
@@ -2556,7 +2765,8 @@ class Code
|
|
|
2556
2765
|
},
|
|
2557
2766
|
"america_whitehorse?" => {
|
|
2558
2767
|
name: "america_whitehorse?",
|
|
2559
|
-
description:
|
|
2768
|
+
description:
|
|
2769
|
+
"returns whether the current time zone is america/whitehorse.",
|
|
2560
2770
|
examples: [
|
|
2561
2771
|
"Date.america_whitehorse?",
|
|
2562
2772
|
"Date.new(\"2024-03-05\").america_whitehorse?",
|
|
@@ -2565,7 +2775,8 @@ class Code
|
|
|
2565
2775
|
},
|
|
2566
2776
|
"america_winnipeg?" => {
|
|
2567
2777
|
name: "america_winnipeg?",
|
|
2568
|
-
description:
|
|
2778
|
+
description:
|
|
2779
|
+
"returns whether the current time zone is america/winnipeg.",
|
|
2569
2780
|
examples: [
|
|
2570
2781
|
"Date.america_winnipeg?",
|
|
2571
2782
|
"Date.new(\"2024-03-05\").america_winnipeg?",
|
|
@@ -2574,7 +2785,8 @@ class Code
|
|
|
2574
2785
|
},
|
|
2575
2786
|
"america_yakutat?" => {
|
|
2576
2787
|
name: "america_yakutat?",
|
|
2577
|
-
description:
|
|
2788
|
+
description:
|
|
2789
|
+
"returns whether the current time zone is america/yakutat.",
|
|
2578
2790
|
examples: [
|
|
2579
2791
|
"Date.america_yakutat?",
|
|
2580
2792
|
"Date.new(\"2024-03-05\").america_yakutat?",
|
|
@@ -2583,7 +2795,8 @@ class Code
|
|
|
2583
2795
|
},
|
|
2584
2796
|
"america_yellowknife?" => {
|
|
2585
2797
|
name: "america_yellowknife?",
|
|
2586
|
-
description:
|
|
2798
|
+
description:
|
|
2799
|
+
"returns whether the current time zone is america/yellowknife.",
|
|
2587
2800
|
examples: [
|
|
2588
2801
|
"Date.america_yellowknife?",
|
|
2589
2802
|
"Date.new(\"2024-03-05\").america_yellowknife?",
|
|
@@ -2592,7 +2805,8 @@ class Code
|
|
|
2592
2805
|
},
|
|
2593
2806
|
"antarctica_casey?" => {
|
|
2594
2807
|
name: "antarctica_casey?",
|
|
2595
|
-
description:
|
|
2808
|
+
description:
|
|
2809
|
+
"returns whether the current time zone is antarctica/casey.",
|
|
2596
2810
|
examples: [
|
|
2597
2811
|
"Date.antarctica_casey?",
|
|
2598
2812
|
"Date.new(\"2024-03-05\").antarctica_casey?",
|
|
@@ -2601,7 +2815,8 @@ class Code
|
|
|
2601
2815
|
},
|
|
2602
2816
|
"antarctica_davis?" => {
|
|
2603
2817
|
name: "antarctica_davis?",
|
|
2604
|
-
description:
|
|
2818
|
+
description:
|
|
2819
|
+
"returns whether the current time zone is antarctica/davis.",
|
|
2605
2820
|
examples: [
|
|
2606
2821
|
"Date.antarctica_davis?",
|
|
2607
2822
|
"Date.new(\"2024-03-05\").antarctica_davis?",
|
|
@@ -2610,7 +2825,8 @@ class Code
|
|
|
2610
2825
|
},
|
|
2611
2826
|
"antarctica_dumontdurville?" => {
|
|
2612
2827
|
name: "antarctica_dumontdurville?",
|
|
2613
|
-
description:
|
|
2828
|
+
description:
|
|
2829
|
+
"returns whether the current time zone is antarctica/dumontdurville.",
|
|
2614
2830
|
examples: [
|
|
2615
2831
|
"Date.antarctica_dumontdurville?",
|
|
2616
2832
|
"Date.new(\"2024-03-05\").antarctica_dumontdurville?",
|
|
@@ -2619,7 +2835,8 @@ class Code
|
|
|
2619
2835
|
},
|
|
2620
2836
|
"antarctica_macquarie?" => {
|
|
2621
2837
|
name: "antarctica_macquarie?",
|
|
2622
|
-
description:
|
|
2838
|
+
description:
|
|
2839
|
+
"returns whether the current time zone is antarctica/macquarie.",
|
|
2623
2840
|
examples: [
|
|
2624
2841
|
"Date.antarctica_macquarie?",
|
|
2625
2842
|
"Date.new(\"2024-03-05\").antarctica_macquarie?",
|
|
@@ -2628,7 +2845,8 @@ class Code
|
|
|
2628
2845
|
},
|
|
2629
2846
|
"antarctica_mawson?" => {
|
|
2630
2847
|
name: "antarctica_mawson?",
|
|
2631
|
-
description:
|
|
2848
|
+
description:
|
|
2849
|
+
"returns whether the current time zone is antarctica/mawson.",
|
|
2632
2850
|
examples: [
|
|
2633
2851
|
"Date.antarctica_mawson?",
|
|
2634
2852
|
"Date.new(\"2024-03-05\").antarctica_mawson?",
|
|
@@ -2637,7 +2855,8 @@ class Code
|
|
|
2637
2855
|
},
|
|
2638
2856
|
"antarctica_mcmurdo?" => {
|
|
2639
2857
|
name: "antarctica_mcmurdo?",
|
|
2640
|
-
description:
|
|
2858
|
+
description:
|
|
2859
|
+
"returns whether the current time zone is antarctica/mcmurdo.",
|
|
2641
2860
|
examples: [
|
|
2642
2861
|
"Date.antarctica_mcmurdo?",
|
|
2643
2862
|
"Date.new(\"2024-03-05\").antarctica_mcmurdo?",
|
|
@@ -2646,7 +2865,8 @@ class Code
|
|
|
2646
2865
|
},
|
|
2647
2866
|
"antarctica_palmer?" => {
|
|
2648
2867
|
name: "antarctica_palmer?",
|
|
2649
|
-
description:
|
|
2868
|
+
description:
|
|
2869
|
+
"returns whether the current time zone is antarctica/palmer.",
|
|
2650
2870
|
examples: [
|
|
2651
2871
|
"Date.antarctica_palmer?",
|
|
2652
2872
|
"Date.new(\"2024-03-05\").antarctica_palmer?",
|
|
@@ -2655,7 +2875,8 @@ class Code
|
|
|
2655
2875
|
},
|
|
2656
2876
|
"antarctica_rothera?" => {
|
|
2657
2877
|
name: "antarctica_rothera?",
|
|
2658
|
-
description:
|
|
2878
|
+
description:
|
|
2879
|
+
"returns whether the current time zone is antarctica/rothera.",
|
|
2659
2880
|
examples: [
|
|
2660
2881
|
"Date.antarctica_rothera?",
|
|
2661
2882
|
"Date.new(\"2024-03-05\").antarctica_rothera?",
|
|
@@ -2664,7 +2885,8 @@ class Code
|
|
|
2664
2885
|
},
|
|
2665
2886
|
"antarctica_south_pole?" => {
|
|
2666
2887
|
name: "antarctica_south_pole?",
|
|
2667
|
-
description:
|
|
2888
|
+
description:
|
|
2889
|
+
"returns whether the current time zone is antarctica/south_pole.",
|
|
2668
2890
|
examples: [
|
|
2669
2891
|
"Date.antarctica_south_pole?",
|
|
2670
2892
|
"Date.new(\"2024-03-05\").antarctica_south_pole?",
|
|
@@ -2673,7 +2895,8 @@ class Code
|
|
|
2673
2895
|
},
|
|
2674
2896
|
"antarctica_syowa?" => {
|
|
2675
2897
|
name: "antarctica_syowa?",
|
|
2676
|
-
description:
|
|
2898
|
+
description:
|
|
2899
|
+
"returns whether the current time zone is antarctica/syowa.",
|
|
2677
2900
|
examples: [
|
|
2678
2901
|
"Date.antarctica_syowa?",
|
|
2679
2902
|
"Date.new(\"2024-03-05\").antarctica_syowa?",
|
|
@@ -2682,7 +2905,8 @@ class Code
|
|
|
2682
2905
|
},
|
|
2683
2906
|
"antarctica_troll?" => {
|
|
2684
2907
|
name: "antarctica_troll?",
|
|
2685
|
-
description:
|
|
2908
|
+
description:
|
|
2909
|
+
"returns whether the current time zone is antarctica/troll.",
|
|
2686
2910
|
examples: [
|
|
2687
2911
|
"Date.antarctica_troll?",
|
|
2688
2912
|
"Date.new(\"2024-03-05\").antarctica_troll?",
|
|
@@ -2691,7 +2915,8 @@ class Code
|
|
|
2691
2915
|
},
|
|
2692
2916
|
"antarctica_vostok?" => {
|
|
2693
2917
|
name: "antarctica_vostok?",
|
|
2694
|
-
description:
|
|
2918
|
+
description:
|
|
2919
|
+
"returns whether the current time zone is antarctica/vostok.",
|
|
2695
2920
|
examples: [
|
|
2696
2921
|
"Date.antarctica_vostok?",
|
|
2697
2922
|
"Date.new(\"2024-03-05\").antarctica_vostok?",
|
|
@@ -2700,7 +2925,8 @@ class Code
|
|
|
2700
2925
|
},
|
|
2701
2926
|
"arctic_longyearbyen?" => {
|
|
2702
2927
|
name: "arctic_longyearbyen?",
|
|
2703
|
-
description:
|
|
2928
|
+
description:
|
|
2929
|
+
"returns whether the current time zone is arctic/longyearbyen.",
|
|
2704
2930
|
examples: [
|
|
2705
2931
|
"Date.arctic_longyearbyen?",
|
|
2706
2932
|
"Date.new(\"2024-03-05\").arctic_longyearbyen?",
|
|
@@ -2763,7 +2989,8 @@ class Code
|
|
|
2763
2989
|
},
|
|
2764
2990
|
"asia_ashgabat?" => {
|
|
2765
2991
|
name: "asia_ashgabat?",
|
|
2766
|
-
description:
|
|
2992
|
+
description:
|
|
2993
|
+
"returns whether the current time zone is asia/ashgabat.",
|
|
2767
2994
|
examples: [
|
|
2768
2995
|
"Date.asia_ashgabat?",
|
|
2769
2996
|
"Date.new(\"2024-03-05\").asia_ashgabat?",
|
|
@@ -2772,7 +2999,8 @@ class Code
|
|
|
2772
2999
|
},
|
|
2773
3000
|
"asia_ashkhabad?" => {
|
|
2774
3001
|
name: "asia_ashkhabad?",
|
|
2775
|
-
description:
|
|
3002
|
+
description:
|
|
3003
|
+
"returns whether the current time zone is asia/ashkhabad.",
|
|
2776
3004
|
examples: [
|
|
2777
3005
|
"Date.asia_ashkhabad?",
|
|
2778
3006
|
"Date.new(\"2024-03-05\").asia_ashkhabad?",
|
|
@@ -2862,7 +3090,8 @@ class Code
|
|
|
2862
3090
|
},
|
|
2863
3091
|
"asia_calcutta?" => {
|
|
2864
3092
|
name: "asia_calcutta?",
|
|
2865
|
-
description:
|
|
3093
|
+
description:
|
|
3094
|
+
"returns whether the current time zone is asia/calcutta.",
|
|
2866
3095
|
examples: [
|
|
2867
3096
|
"Date.asia_calcutta?",
|
|
2868
3097
|
"Date.new(\"2024-03-05\").asia_calcutta?",
|
|
@@ -2880,7 +3109,8 @@ class Code
|
|
|
2880
3109
|
},
|
|
2881
3110
|
"asia_choibalsan?" => {
|
|
2882
3111
|
name: "asia_choibalsan?",
|
|
2883
|
-
description:
|
|
3112
|
+
description:
|
|
3113
|
+
"returns whether the current time zone is asia/choibalsan.",
|
|
2884
3114
|
examples: [
|
|
2885
3115
|
"Date.asia_choibalsan?",
|
|
2886
3116
|
"Date.new(\"2024-03-05\").asia_choibalsan?",
|
|
@@ -2889,7 +3119,8 @@ class Code
|
|
|
2889
3119
|
},
|
|
2890
3120
|
"asia_chongqing?" => {
|
|
2891
3121
|
name: "asia_chongqing?",
|
|
2892
|
-
description:
|
|
3122
|
+
description:
|
|
3123
|
+
"returns whether the current time zone is asia/chongqing.",
|
|
2893
3124
|
examples: [
|
|
2894
3125
|
"Date.asia_chongqing?",
|
|
2895
3126
|
"Date.new(\"2024-03-05\").asia_chongqing?",
|
|
@@ -2898,7 +3129,8 @@ class Code
|
|
|
2898
3129
|
},
|
|
2899
3130
|
"asia_chungking?" => {
|
|
2900
3131
|
name: "asia_chungking?",
|
|
2901
|
-
description:
|
|
3132
|
+
description:
|
|
3133
|
+
"returns whether the current time zone is asia/chungking.",
|
|
2902
3134
|
examples: [
|
|
2903
3135
|
"Date.asia_chungking?",
|
|
2904
3136
|
"Date.new(\"2024-03-05\").asia_chungking?",
|
|
@@ -2925,7 +3157,8 @@ class Code
|
|
|
2925
3157
|
},
|
|
2926
3158
|
"asia_damascus?" => {
|
|
2927
3159
|
name: "asia_damascus?",
|
|
2928
|
-
description:
|
|
3160
|
+
description:
|
|
3161
|
+
"returns whether the current time zone is asia/damascus.",
|
|
2929
3162
|
examples: [
|
|
2930
3163
|
"Date.asia_damascus?",
|
|
2931
3164
|
"Date.new(\"2024-03-05\").asia_damascus?",
|
|
@@ -2961,7 +3194,8 @@ class Code
|
|
|
2961
3194
|
},
|
|
2962
3195
|
"asia_dushanbe?" => {
|
|
2963
3196
|
name: "asia_dushanbe?",
|
|
2964
|
-
description:
|
|
3197
|
+
description:
|
|
3198
|
+
"returns whether the current time zone is asia/dushanbe.",
|
|
2965
3199
|
examples: [
|
|
2966
3200
|
"Date.asia_dushanbe?",
|
|
2967
3201
|
"Date.new(\"2024-03-05\").asia_dushanbe?",
|
|
@@ -2970,7 +3204,8 @@ class Code
|
|
|
2970
3204
|
},
|
|
2971
3205
|
"asia_famagusta?" => {
|
|
2972
3206
|
name: "asia_famagusta?",
|
|
2973
|
-
description:
|
|
3207
|
+
description:
|
|
3208
|
+
"returns whether the current time zone is asia/famagusta.",
|
|
2974
3209
|
examples: [
|
|
2975
3210
|
"Date.asia_famagusta?",
|
|
2976
3211
|
"Date.new(\"2024-03-05\").asia_famagusta?",
|
|
@@ -3006,7 +3241,8 @@ class Code
|
|
|
3006
3241
|
},
|
|
3007
3242
|
"asia_ho_chi_minh?" => {
|
|
3008
3243
|
name: "asia_ho_chi_minh?",
|
|
3009
|
-
description:
|
|
3244
|
+
description:
|
|
3245
|
+
"returns whether the current time zone is asia/ho_chi_minh.",
|
|
3010
3246
|
examples: [
|
|
3011
3247
|
"Date.asia_ho_chi_minh?",
|
|
3012
3248
|
"Date.new(\"2024-03-05\").asia_ho_chi_minh?",
|
|
@@ -3015,7 +3251,8 @@ class Code
|
|
|
3015
3251
|
},
|
|
3016
3252
|
"asia_hong_kong?" => {
|
|
3017
3253
|
name: "asia_hong_kong?",
|
|
3018
|
-
description:
|
|
3254
|
+
description:
|
|
3255
|
+
"returns whether the current time zone is asia/hong_kong.",
|
|
3019
3256
|
examples: [
|
|
3020
3257
|
"Date.asia_hong_kong?",
|
|
3021
3258
|
"Date.new(\"2024-03-05\").asia_hong_kong?",
|
|
@@ -3042,7 +3279,8 @@ class Code
|
|
|
3042
3279
|
},
|
|
3043
3280
|
"asia_istanbul?" => {
|
|
3044
3281
|
name: "asia_istanbul?",
|
|
3045
|
-
description:
|
|
3282
|
+
description:
|
|
3283
|
+
"returns whether the current time zone is asia/istanbul.",
|
|
3046
3284
|
examples: [
|
|
3047
3285
|
"Date.asia_istanbul?",
|
|
3048
3286
|
"Date.new(\"2024-03-05\").asia_istanbul?",
|
|
@@ -3060,7 +3298,8 @@ class Code
|
|
|
3060
3298
|
},
|
|
3061
3299
|
"asia_jayapura?" => {
|
|
3062
3300
|
name: "asia_jayapura?",
|
|
3063
|
-
description:
|
|
3301
|
+
description:
|
|
3302
|
+
"returns whether the current time zone is asia/jayapura.",
|
|
3064
3303
|
examples: [
|
|
3065
3304
|
"Date.asia_jayapura?",
|
|
3066
3305
|
"Date.new(\"2024-03-05\").asia_jayapura?",
|
|
@@ -3069,7 +3308,8 @@ class Code
|
|
|
3069
3308
|
},
|
|
3070
3309
|
"asia_jerusalem?" => {
|
|
3071
3310
|
name: "asia_jerusalem?",
|
|
3072
|
-
description:
|
|
3311
|
+
description:
|
|
3312
|
+
"returns whether the current time zone is asia/jerusalem.",
|
|
3073
3313
|
examples: [
|
|
3074
3314
|
"Date.asia_jerusalem?",
|
|
3075
3315
|
"Date.new(\"2024-03-05\").asia_jerusalem?",
|
|
@@ -3087,7 +3327,8 @@ class Code
|
|
|
3087
3327
|
},
|
|
3088
3328
|
"asia_kamchatka?" => {
|
|
3089
3329
|
name: "asia_kamchatka?",
|
|
3090
|
-
description:
|
|
3330
|
+
description:
|
|
3331
|
+
"returns whether the current time zone is asia/kamchatka.",
|
|
3091
3332
|
examples: [
|
|
3092
3333
|
"Date.asia_kamchatka?",
|
|
3093
3334
|
"Date.new(\"2024-03-05\").asia_kamchatka?",
|
|
@@ -3114,7 +3355,8 @@ class Code
|
|
|
3114
3355
|
},
|
|
3115
3356
|
"asia_kathmandu?" => {
|
|
3116
3357
|
name: "asia_kathmandu?",
|
|
3117
|
-
description:
|
|
3358
|
+
description:
|
|
3359
|
+
"returns whether the current time zone is asia/kathmandu.",
|
|
3118
3360
|
examples: [
|
|
3119
3361
|
"Date.asia_kathmandu?",
|
|
3120
3362
|
"Date.new(\"2024-03-05\").asia_kathmandu?",
|
|
@@ -3123,7 +3365,8 @@ class Code
|
|
|
3123
3365
|
},
|
|
3124
3366
|
"asia_katmandu?" => {
|
|
3125
3367
|
name: "asia_katmandu?",
|
|
3126
|
-
description:
|
|
3368
|
+
description:
|
|
3369
|
+
"returns whether the current time zone is asia/katmandu.",
|
|
3127
3370
|
examples: [
|
|
3128
3371
|
"Date.asia_katmandu?",
|
|
3129
3372
|
"Date.new(\"2024-03-05\").asia_katmandu?",
|
|
@@ -3132,7 +3375,8 @@ class Code
|
|
|
3132
3375
|
},
|
|
3133
3376
|
"asia_khandyga?" => {
|
|
3134
3377
|
name: "asia_khandyga?",
|
|
3135
|
-
description:
|
|
3378
|
+
description:
|
|
3379
|
+
"returns whether the current time zone is asia/khandyga.",
|
|
3136
3380
|
examples: [
|
|
3137
3381
|
"Date.asia_khandyga?",
|
|
3138
3382
|
"Date.new(\"2024-03-05\").asia_khandyga?",
|
|
@@ -3150,7 +3394,8 @@ class Code
|
|
|
3150
3394
|
},
|
|
3151
3395
|
"asia_krasnoyarsk?" => {
|
|
3152
3396
|
name: "asia_krasnoyarsk?",
|
|
3153
|
-
description:
|
|
3397
|
+
description:
|
|
3398
|
+
"returns whether the current time zone is asia/krasnoyarsk.",
|
|
3154
3399
|
examples: [
|
|
3155
3400
|
"Date.asia_krasnoyarsk?",
|
|
3156
3401
|
"Date.new(\"2024-03-05\").asia_krasnoyarsk?",
|
|
@@ -3159,7 +3404,8 @@ class Code
|
|
|
3159
3404
|
},
|
|
3160
3405
|
"asia_kuala_lumpur?" => {
|
|
3161
3406
|
name: "asia_kuala_lumpur?",
|
|
3162
|
-
description:
|
|
3407
|
+
description:
|
|
3408
|
+
"returns whether the current time zone is asia/kuala_lumpur.",
|
|
3163
3409
|
examples: [
|
|
3164
3410
|
"Date.asia_kuala_lumpur?",
|
|
3165
3411
|
"Date.new(\"2024-03-05\").asia_kuala_lumpur?",
|
|
@@ -3213,7 +3459,8 @@ class Code
|
|
|
3213
3459
|
},
|
|
3214
3460
|
"asia_makassar?" => {
|
|
3215
3461
|
name: "asia_makassar?",
|
|
3216
|
-
description:
|
|
3462
|
+
description:
|
|
3463
|
+
"returns whether the current time zone is asia/makassar.",
|
|
3217
3464
|
examples: [
|
|
3218
3465
|
"Date.asia_makassar?",
|
|
3219
3466
|
"Date.new(\"2024-03-05\").asia_makassar?",
|
|
@@ -3249,7 +3496,8 @@ class Code
|
|
|
3249
3496
|
},
|
|
3250
3497
|
"asia_novokuznetsk?" => {
|
|
3251
3498
|
name: "asia_novokuznetsk?",
|
|
3252
|
-
description:
|
|
3499
|
+
description:
|
|
3500
|
+
"returns whether the current time zone is asia/novokuznetsk.",
|
|
3253
3501
|
examples: [
|
|
3254
3502
|
"Date.asia_novokuznetsk?",
|
|
3255
3503
|
"Date.new(\"2024-03-05\").asia_novokuznetsk?",
|
|
@@ -3258,7 +3506,8 @@ class Code
|
|
|
3258
3506
|
},
|
|
3259
3507
|
"asia_novosibirsk?" => {
|
|
3260
3508
|
name: "asia_novosibirsk?",
|
|
3261
|
-
description:
|
|
3509
|
+
description:
|
|
3510
|
+
"returns whether the current time zone is asia/novosibirsk.",
|
|
3262
3511
|
examples: [
|
|
3263
3512
|
"Date.asia_novosibirsk?",
|
|
3264
3513
|
"Date.new(\"2024-03-05\").asia_novosibirsk?",
|
|
@@ -3285,7 +3534,8 @@ class Code
|
|
|
3285
3534
|
},
|
|
3286
3535
|
"asia_phnom_penh?" => {
|
|
3287
3536
|
name: "asia_phnom_penh?",
|
|
3288
|
-
description:
|
|
3537
|
+
description:
|
|
3538
|
+
"returns whether the current time zone is asia/phnom_penh.",
|
|
3289
3539
|
examples: [
|
|
3290
3540
|
"Date.asia_phnom_penh?",
|
|
3291
3541
|
"Date.new(\"2024-03-05\").asia_phnom_penh?",
|
|
@@ -3294,7 +3544,8 @@ class Code
|
|
|
3294
3544
|
},
|
|
3295
3545
|
"asia_pontianak?" => {
|
|
3296
3546
|
name: "asia_pontianak?",
|
|
3297
|
-
description:
|
|
3547
|
+
description:
|
|
3548
|
+
"returns whether the current time zone is asia/pontianak.",
|
|
3298
3549
|
examples: [
|
|
3299
3550
|
"Date.asia_pontianak?",
|
|
3300
3551
|
"Date.new(\"2024-03-05\").asia_pontianak?",
|
|
@@ -3303,7 +3554,8 @@ class Code
|
|
|
3303
3554
|
},
|
|
3304
3555
|
"asia_pyongyang?" => {
|
|
3305
3556
|
name: "asia_pyongyang?",
|
|
3306
|
-
description:
|
|
3557
|
+
description:
|
|
3558
|
+
"returns whether the current time zone is asia/pyongyang.",
|
|
3307
3559
|
examples: [
|
|
3308
3560
|
"Date.asia_pyongyang?",
|
|
3309
3561
|
"Date.new(\"2024-03-05\").asia_pyongyang?",
|
|
@@ -3321,7 +3573,8 @@ class Code
|
|
|
3321
3573
|
},
|
|
3322
3574
|
"asia_qostanay?" => {
|
|
3323
3575
|
name: "asia_qostanay?",
|
|
3324
|
-
description:
|
|
3576
|
+
description:
|
|
3577
|
+
"returns whether the current time zone is asia/qostanay.",
|
|
3325
3578
|
examples: [
|
|
3326
3579
|
"Date.asia_qostanay?",
|
|
3327
3580
|
"Date.new(\"2024-03-05\").asia_qostanay?",
|
|
@@ -3330,7 +3583,8 @@ class Code
|
|
|
3330
3583
|
},
|
|
3331
3584
|
"asia_qyzylorda?" => {
|
|
3332
3585
|
name: "asia_qyzylorda?",
|
|
3333
|
-
description:
|
|
3586
|
+
description:
|
|
3587
|
+
"returns whether the current time zone is asia/qyzylorda.",
|
|
3334
3588
|
examples: [
|
|
3335
3589
|
"Date.asia_qyzylorda?",
|
|
3336
3590
|
"Date.new(\"2024-03-05\").asia_qyzylorda?",
|
|
@@ -3366,7 +3620,8 @@ class Code
|
|
|
3366
3620
|
},
|
|
3367
3621
|
"asia_sakhalin?" => {
|
|
3368
3622
|
name: "asia_sakhalin?",
|
|
3369
|
-
description:
|
|
3623
|
+
description:
|
|
3624
|
+
"returns whether the current time zone is asia/sakhalin.",
|
|
3370
3625
|
examples: [
|
|
3371
3626
|
"Date.asia_sakhalin?",
|
|
3372
3627
|
"Date.new(\"2024-03-05\").asia_sakhalin?",
|
|
@@ -3375,7 +3630,8 @@ class Code
|
|
|
3375
3630
|
},
|
|
3376
3631
|
"asia_samarkand?" => {
|
|
3377
3632
|
name: "asia_samarkand?",
|
|
3378
|
-
description:
|
|
3633
|
+
description:
|
|
3634
|
+
"returns whether the current time zone is asia/samarkand.",
|
|
3379
3635
|
examples: [
|
|
3380
3636
|
"Date.asia_samarkand?",
|
|
3381
3637
|
"Date.new(\"2024-03-05\").asia_samarkand?",
|
|
@@ -3393,7 +3649,8 @@ class Code
|
|
|
3393
3649
|
},
|
|
3394
3650
|
"asia_shanghai?" => {
|
|
3395
3651
|
name: "asia_shanghai?",
|
|
3396
|
-
description:
|
|
3652
|
+
description:
|
|
3653
|
+
"returns whether the current time zone is asia/shanghai.",
|
|
3397
3654
|
examples: [
|
|
3398
3655
|
"Date.asia_shanghai?",
|
|
3399
3656
|
"Date.new(\"2024-03-05\").asia_shanghai?",
|
|
@@ -3402,7 +3659,8 @@ class Code
|
|
|
3402
3659
|
},
|
|
3403
3660
|
"asia_singapore?" => {
|
|
3404
3661
|
name: "asia_singapore?",
|
|
3405
|
-
description:
|
|
3662
|
+
description:
|
|
3663
|
+
"returns whether the current time zone is asia/singapore.",
|
|
3406
3664
|
examples: [
|
|
3407
3665
|
"Date.asia_singapore?",
|
|
3408
3666
|
"Date.new(\"2024-03-05\").asia_singapore?",
|
|
@@ -3411,7 +3669,8 @@ class Code
|
|
|
3411
3669
|
},
|
|
3412
3670
|
"asia_srednekolymsk?" => {
|
|
3413
3671
|
name: "asia_srednekolymsk?",
|
|
3414
|
-
description:
|
|
3672
|
+
description:
|
|
3673
|
+
"returns whether the current time zone is asia/srednekolymsk.",
|
|
3415
3674
|
examples: [
|
|
3416
3675
|
"Date.asia_srednekolymsk?",
|
|
3417
3676
|
"Date.new(\"2024-03-05\").asia_srednekolymsk?",
|
|
@@ -3429,7 +3688,8 @@ class Code
|
|
|
3429
3688
|
},
|
|
3430
3689
|
"asia_tashkent?" => {
|
|
3431
3690
|
name: "asia_tashkent?",
|
|
3432
|
-
description:
|
|
3691
|
+
description:
|
|
3692
|
+
"returns whether the current time zone is asia/tashkent.",
|
|
3433
3693
|
examples: [
|
|
3434
3694
|
"Date.asia_tashkent?",
|
|
3435
3695
|
"Date.new(\"2024-03-05\").asia_tashkent?",
|
|
@@ -3456,7 +3716,8 @@ class Code
|
|
|
3456
3716
|
},
|
|
3457
3717
|
"asia_tel_aviv?" => {
|
|
3458
3718
|
name: "asia_tel_aviv?",
|
|
3459
|
-
description:
|
|
3719
|
+
description:
|
|
3720
|
+
"returns whether the current time zone is asia/tel_aviv.",
|
|
3460
3721
|
examples: [
|
|
3461
3722
|
"Date.asia_tel_aviv?",
|
|
3462
3723
|
"Date.new(\"2024-03-05\").asia_tel_aviv?",
|
|
@@ -3501,7 +3762,8 @@ class Code
|
|
|
3501
3762
|
},
|
|
3502
3763
|
"asia_ujung_pandang?" => {
|
|
3503
3764
|
name: "asia_ujung_pandang?",
|
|
3504
|
-
description:
|
|
3765
|
+
description:
|
|
3766
|
+
"returns whether the current time zone is asia/ujung_pandang.",
|
|
3505
3767
|
examples: [
|
|
3506
3768
|
"Date.asia_ujung_pandang?",
|
|
3507
3769
|
"Date.new(\"2024-03-05\").asia_ujung_pandang?",
|
|
@@ -3510,7 +3772,8 @@ class Code
|
|
|
3510
3772
|
},
|
|
3511
3773
|
"asia_ulaanbaatar?" => {
|
|
3512
3774
|
name: "asia_ulaanbaatar?",
|
|
3513
|
-
description:
|
|
3775
|
+
description:
|
|
3776
|
+
"returns whether the current time zone is asia/ulaanbaatar.",
|
|
3514
3777
|
examples: [
|
|
3515
3778
|
"Date.asia_ulaanbaatar?",
|
|
3516
3779
|
"Date.new(\"2024-03-05\").asia_ulaanbaatar?",
|
|
@@ -3519,7 +3782,8 @@ class Code
|
|
|
3519
3782
|
},
|
|
3520
3783
|
"asia_ulan_bator?" => {
|
|
3521
3784
|
name: "asia_ulan_bator?",
|
|
3522
|
-
description:
|
|
3785
|
+
description:
|
|
3786
|
+
"returns whether the current time zone is asia/ulan_bator.",
|
|
3523
3787
|
examples: [
|
|
3524
3788
|
"Date.asia_ulan_bator?",
|
|
3525
3789
|
"Date.new(\"2024-03-05\").asia_ulan_bator?",
|
|
@@ -3537,7 +3801,8 @@ class Code
|
|
|
3537
3801
|
},
|
|
3538
3802
|
"asia_ust_minus_nera?" => {
|
|
3539
3803
|
name: "asia_ust_minus_nera?",
|
|
3540
|
-
description:
|
|
3804
|
+
description:
|
|
3805
|
+
"returns whether the current time zone is asia/ust-nera.",
|
|
3541
3806
|
examples: [
|
|
3542
3807
|
"Date.asia_ust_minus_nera?",
|
|
3543
3808
|
"Date.new(\"2024-03-05\").asia_ust_minus_nera?",
|
|
@@ -3546,7 +3811,8 @@ class Code
|
|
|
3546
3811
|
},
|
|
3547
3812
|
"asia_vientiane?" => {
|
|
3548
3813
|
name: "asia_vientiane?",
|
|
3549
|
-
description:
|
|
3814
|
+
description:
|
|
3815
|
+
"returns whether the current time zone is asia/vientiane.",
|
|
3550
3816
|
examples: [
|
|
3551
3817
|
"Date.asia_vientiane?",
|
|
3552
3818
|
"Date.new(\"2024-03-05\").asia_vientiane?",
|
|
@@ -3555,7 +3821,8 @@ class Code
|
|
|
3555
3821
|
},
|
|
3556
3822
|
"asia_vladivostok?" => {
|
|
3557
3823
|
name: "asia_vladivostok?",
|
|
3558
|
-
description:
|
|
3824
|
+
description:
|
|
3825
|
+
"returns whether the current time zone is asia/vladivostok.",
|
|
3559
3826
|
examples: [
|
|
3560
3827
|
"Date.asia_vladivostok?",
|
|
3561
3828
|
"Date.new(\"2024-03-05\").asia_vladivostok?",
|
|
@@ -3582,7 +3849,8 @@ class Code
|
|
|
3582
3849
|
},
|
|
3583
3850
|
"asia_yekaterinburg?" => {
|
|
3584
3851
|
name: "asia_yekaterinburg?",
|
|
3585
|
-
description:
|
|
3852
|
+
description:
|
|
3853
|
+
"returns whether the current time zone is asia/yekaterinburg.",
|
|
3586
3854
|
examples: [
|
|
3587
3855
|
"Date.asia_yekaterinburg?",
|
|
3588
3856
|
"Date.new(\"2024-03-05\").asia_yekaterinburg?",
|
|
@@ -3600,7 +3868,8 @@ class Code
|
|
|
3600
3868
|
},
|
|
3601
3869
|
"atlantic_azores?" => {
|
|
3602
3870
|
name: "atlantic_azores?",
|
|
3603
|
-
description:
|
|
3871
|
+
description:
|
|
3872
|
+
"returns whether the current time zone is atlantic/azores.",
|
|
3604
3873
|
examples: [
|
|
3605
3874
|
"Date.atlantic_azores?",
|
|
3606
3875
|
"Date.new(\"2024-03-05\").atlantic_azores?",
|
|
@@ -3609,7 +3878,8 @@ class Code
|
|
|
3609
3878
|
},
|
|
3610
3879
|
"atlantic_bermuda?" => {
|
|
3611
3880
|
name: "atlantic_bermuda?",
|
|
3612
|
-
description:
|
|
3881
|
+
description:
|
|
3882
|
+
"returns whether the current time zone is atlantic/bermuda.",
|
|
3613
3883
|
examples: [
|
|
3614
3884
|
"Date.atlantic_bermuda?",
|
|
3615
3885
|
"Date.new(\"2024-03-05\").atlantic_bermuda?",
|
|
@@ -3618,7 +3888,8 @@ class Code
|
|
|
3618
3888
|
},
|
|
3619
3889
|
"atlantic_canary?" => {
|
|
3620
3890
|
name: "atlantic_canary?",
|
|
3621
|
-
description:
|
|
3891
|
+
description:
|
|
3892
|
+
"returns whether the current time zone is atlantic/canary.",
|
|
3622
3893
|
examples: [
|
|
3623
3894
|
"Date.atlantic_canary?",
|
|
3624
3895
|
"Date.new(\"2024-03-05\").atlantic_canary?",
|
|
@@ -3627,7 +3898,8 @@ class Code
|
|
|
3627
3898
|
},
|
|
3628
3899
|
"atlantic_cape_verde?" => {
|
|
3629
3900
|
name: "atlantic_cape_verde?",
|
|
3630
|
-
description:
|
|
3901
|
+
description:
|
|
3902
|
+
"returns whether the current time zone is atlantic/cape_verde.",
|
|
3631
3903
|
examples: [
|
|
3632
3904
|
"Date.atlantic_cape_verde?",
|
|
3633
3905
|
"Date.new(\"2024-03-05\").atlantic_cape_verde?",
|
|
@@ -3636,7 +3908,8 @@ class Code
|
|
|
3636
3908
|
},
|
|
3637
3909
|
"atlantic_faeroe?" => {
|
|
3638
3910
|
name: "atlantic_faeroe?",
|
|
3639
|
-
description:
|
|
3911
|
+
description:
|
|
3912
|
+
"returns whether the current time zone is atlantic/faeroe.",
|
|
3640
3913
|
examples: [
|
|
3641
3914
|
"Date.atlantic_faeroe?",
|
|
3642
3915
|
"Date.new(\"2024-03-05\").atlantic_faeroe?",
|
|
@@ -3645,7 +3918,8 @@ class Code
|
|
|
3645
3918
|
},
|
|
3646
3919
|
"atlantic_faroe?" => {
|
|
3647
3920
|
name: "atlantic_faroe?",
|
|
3648
|
-
description:
|
|
3921
|
+
description:
|
|
3922
|
+
"returns whether the current time zone is atlantic/faroe.",
|
|
3649
3923
|
examples: [
|
|
3650
3924
|
"Date.atlantic_faroe?",
|
|
3651
3925
|
"Date.new(\"2024-03-05\").atlantic_faroe?",
|
|
@@ -3654,7 +3928,8 @@ class Code
|
|
|
3654
3928
|
},
|
|
3655
3929
|
"atlantic_jan_mayen?" => {
|
|
3656
3930
|
name: "atlantic_jan_mayen?",
|
|
3657
|
-
description:
|
|
3931
|
+
description:
|
|
3932
|
+
"returns whether the current time zone is atlantic/jan_mayen.",
|
|
3658
3933
|
examples: [
|
|
3659
3934
|
"Date.atlantic_jan_mayen?",
|
|
3660
3935
|
"Date.new(\"2024-03-05\").atlantic_jan_mayen?",
|
|
@@ -3663,7 +3938,8 @@ class Code
|
|
|
3663
3938
|
},
|
|
3664
3939
|
"atlantic_madeira?" => {
|
|
3665
3940
|
name: "atlantic_madeira?",
|
|
3666
|
-
description:
|
|
3941
|
+
description:
|
|
3942
|
+
"returns whether the current time zone is atlantic/madeira.",
|
|
3667
3943
|
examples: [
|
|
3668
3944
|
"Date.atlantic_madeira?",
|
|
3669
3945
|
"Date.new(\"2024-03-05\").atlantic_madeira?",
|
|
@@ -3672,7 +3948,8 @@ class Code
|
|
|
3672
3948
|
},
|
|
3673
3949
|
"atlantic_reykjavik?" => {
|
|
3674
3950
|
name: "atlantic_reykjavik?",
|
|
3675
|
-
description:
|
|
3951
|
+
description:
|
|
3952
|
+
"returns whether the current time zone is atlantic/reykjavik.",
|
|
3676
3953
|
examples: [
|
|
3677
3954
|
"Date.atlantic_reykjavik?",
|
|
3678
3955
|
"Date.new(\"2024-03-05\").atlantic_reykjavik?",
|
|
@@ -3681,7 +3958,8 @@ class Code
|
|
|
3681
3958
|
},
|
|
3682
3959
|
"atlantic_south_georgia?" => {
|
|
3683
3960
|
name: "atlantic_south_georgia?",
|
|
3684
|
-
description:
|
|
3961
|
+
description:
|
|
3962
|
+
"returns whether the current time zone is atlantic/south_georgia.",
|
|
3685
3963
|
examples: [
|
|
3686
3964
|
"Date.atlantic_south_georgia?",
|
|
3687
3965
|
"Date.new(\"2024-03-05\").atlantic_south_georgia?",
|
|
@@ -3690,7 +3968,8 @@ class Code
|
|
|
3690
3968
|
},
|
|
3691
3969
|
"atlantic_st_helena?" => {
|
|
3692
3970
|
name: "atlantic_st_helena?",
|
|
3693
|
-
description:
|
|
3971
|
+
description:
|
|
3972
|
+
"returns whether the current time zone is atlantic/st_helena.",
|
|
3694
3973
|
examples: [
|
|
3695
3974
|
"Date.atlantic_st_helena?",
|
|
3696
3975
|
"Date.new(\"2024-03-05\").atlantic_st_helena?",
|
|
@@ -3699,7 +3978,8 @@ class Code
|
|
|
3699
3978
|
},
|
|
3700
3979
|
"atlantic_stanley?" => {
|
|
3701
3980
|
name: "atlantic_stanley?",
|
|
3702
|
-
description:
|
|
3981
|
+
description:
|
|
3982
|
+
"returns whether the current time zone is atlantic/stanley.",
|
|
3703
3983
|
examples: [
|
|
3704
3984
|
"Date.atlantic_stanley?",
|
|
3705
3985
|
"Date.new(\"2024-03-05\").atlantic_stanley?",
|
|
@@ -3708,7 +3988,8 @@ class Code
|
|
|
3708
3988
|
},
|
|
3709
3989
|
"australia_act?" => {
|
|
3710
3990
|
name: "australia_act?",
|
|
3711
|
-
description:
|
|
3991
|
+
description:
|
|
3992
|
+
"returns whether the current time zone is australia/act.",
|
|
3712
3993
|
examples: [
|
|
3713
3994
|
"Date.australia_act?",
|
|
3714
3995
|
"Date.new(\"2024-03-05\").australia_act?",
|
|
@@ -3717,7 +3998,8 @@ class Code
|
|
|
3717
3998
|
},
|
|
3718
3999
|
"australia_adelaide?" => {
|
|
3719
4000
|
name: "australia_adelaide?",
|
|
3720
|
-
description:
|
|
4001
|
+
description:
|
|
4002
|
+
"returns whether the current time zone is australia/adelaide.",
|
|
3721
4003
|
examples: [
|
|
3722
4004
|
"Date.australia_adelaide?",
|
|
3723
4005
|
"Date.new(\"2024-03-05\").australia_adelaide?",
|
|
@@ -3726,7 +4008,8 @@ class Code
|
|
|
3726
4008
|
},
|
|
3727
4009
|
"australia_brisbane?" => {
|
|
3728
4010
|
name: "australia_brisbane?",
|
|
3729
|
-
description:
|
|
4011
|
+
description:
|
|
4012
|
+
"returns whether the current time zone is australia/brisbane.",
|
|
3730
4013
|
examples: [
|
|
3731
4014
|
"Date.australia_brisbane?",
|
|
3732
4015
|
"Date.new(\"2024-03-05\").australia_brisbane?",
|
|
@@ -3735,7 +4018,8 @@ class Code
|
|
|
3735
4018
|
},
|
|
3736
4019
|
"australia_broken_hill?" => {
|
|
3737
4020
|
name: "australia_broken_hill?",
|
|
3738
|
-
description:
|
|
4021
|
+
description:
|
|
4022
|
+
"returns whether the current time zone is australia/broken_hill.",
|
|
3739
4023
|
examples: [
|
|
3740
4024
|
"Date.australia_broken_hill?",
|
|
3741
4025
|
"Date.new(\"2024-03-05\").australia_broken_hill?",
|
|
@@ -3744,7 +4028,8 @@ class Code
|
|
|
3744
4028
|
},
|
|
3745
4029
|
"australia_canberra?" => {
|
|
3746
4030
|
name: "australia_canberra?",
|
|
3747
|
-
description:
|
|
4031
|
+
description:
|
|
4032
|
+
"returns whether the current time zone is australia/canberra.",
|
|
3748
4033
|
examples: [
|
|
3749
4034
|
"Date.australia_canberra?",
|
|
3750
4035
|
"Date.new(\"2024-03-05\").australia_canberra?",
|
|
@@ -3753,7 +4038,8 @@ class Code
|
|
|
3753
4038
|
},
|
|
3754
4039
|
"australia_currie?" => {
|
|
3755
4040
|
name: "australia_currie?",
|
|
3756
|
-
description:
|
|
4041
|
+
description:
|
|
4042
|
+
"returns whether the current time zone is australia/currie.",
|
|
3757
4043
|
examples: [
|
|
3758
4044
|
"Date.australia_currie?",
|
|
3759
4045
|
"Date.new(\"2024-03-05\").australia_currie?",
|
|
@@ -3762,7 +4048,8 @@ class Code
|
|
|
3762
4048
|
},
|
|
3763
4049
|
"australia_darwin?" => {
|
|
3764
4050
|
name: "australia_darwin?",
|
|
3765
|
-
description:
|
|
4051
|
+
description:
|
|
4052
|
+
"returns whether the current time zone is australia/darwin.",
|
|
3766
4053
|
examples: [
|
|
3767
4054
|
"Date.australia_darwin?",
|
|
3768
4055
|
"Date.new(\"2024-03-05\").australia_darwin?",
|
|
@@ -3771,7 +4058,8 @@ class Code
|
|
|
3771
4058
|
},
|
|
3772
4059
|
"australia_eucla?" => {
|
|
3773
4060
|
name: "australia_eucla?",
|
|
3774
|
-
description:
|
|
4061
|
+
description:
|
|
4062
|
+
"returns whether the current time zone is australia/eucla.",
|
|
3775
4063
|
examples: [
|
|
3776
4064
|
"Date.australia_eucla?",
|
|
3777
4065
|
"Date.new(\"2024-03-05\").australia_eucla?",
|
|
@@ -3780,7 +4068,8 @@ class Code
|
|
|
3780
4068
|
},
|
|
3781
4069
|
"australia_hobart?" => {
|
|
3782
4070
|
name: "australia_hobart?",
|
|
3783
|
-
description:
|
|
4071
|
+
description:
|
|
4072
|
+
"returns whether the current time zone is australia/hobart.",
|
|
3784
4073
|
examples: [
|
|
3785
4074
|
"Date.australia_hobart?",
|
|
3786
4075
|
"Date.new(\"2024-03-05\").australia_hobart?",
|
|
@@ -3789,7 +4078,8 @@ class Code
|
|
|
3789
4078
|
},
|
|
3790
4079
|
"australia_lhi?" => {
|
|
3791
4080
|
name: "australia_lhi?",
|
|
3792
|
-
description:
|
|
4081
|
+
description:
|
|
4082
|
+
"returns whether the current time zone is australia/lhi.",
|
|
3793
4083
|
examples: [
|
|
3794
4084
|
"Date.australia_lhi?",
|
|
3795
4085
|
"Date.new(\"2024-03-05\").australia_lhi?",
|
|
@@ -3798,7 +4088,8 @@ class Code
|
|
|
3798
4088
|
},
|
|
3799
4089
|
"australia_lindeman?" => {
|
|
3800
4090
|
name: "australia_lindeman?",
|
|
3801
|
-
description:
|
|
4091
|
+
description:
|
|
4092
|
+
"returns whether the current time zone is australia/lindeman.",
|
|
3802
4093
|
examples: [
|
|
3803
4094
|
"Date.australia_lindeman?",
|
|
3804
4095
|
"Date.new(\"2024-03-05\").australia_lindeman?",
|
|
@@ -3807,7 +4098,8 @@ class Code
|
|
|
3807
4098
|
},
|
|
3808
4099
|
"australia_lord_howe?" => {
|
|
3809
4100
|
name: "australia_lord_howe?",
|
|
3810
|
-
description:
|
|
4101
|
+
description:
|
|
4102
|
+
"returns whether the current time zone is australia/lord_howe.",
|
|
3811
4103
|
examples: [
|
|
3812
4104
|
"Date.australia_lord_howe?",
|
|
3813
4105
|
"Date.new(\"2024-03-05\").australia_lord_howe?",
|
|
@@ -3816,7 +4108,8 @@ class Code
|
|
|
3816
4108
|
},
|
|
3817
4109
|
"australia_melbourne?" => {
|
|
3818
4110
|
name: "australia_melbourne?",
|
|
3819
|
-
description:
|
|
4111
|
+
description:
|
|
4112
|
+
"returns whether the current time zone is australia/melbourne.",
|
|
3820
4113
|
examples: [
|
|
3821
4114
|
"Date.australia_melbourne?",
|
|
3822
4115
|
"Date.new(\"2024-03-05\").australia_melbourne?",
|
|
@@ -3825,7 +4118,8 @@ class Code
|
|
|
3825
4118
|
},
|
|
3826
4119
|
"australia_nsw?" => {
|
|
3827
4120
|
name: "australia_nsw?",
|
|
3828
|
-
description:
|
|
4121
|
+
description:
|
|
4122
|
+
"returns whether the current time zone is australia/nsw.",
|
|
3829
4123
|
examples: [
|
|
3830
4124
|
"Date.australia_nsw?",
|
|
3831
4125
|
"Date.new(\"2024-03-05\").australia_nsw?",
|
|
@@ -3834,7 +4128,8 @@ class Code
|
|
|
3834
4128
|
},
|
|
3835
4129
|
"australia_north?" => {
|
|
3836
4130
|
name: "australia_north?",
|
|
3837
|
-
description:
|
|
4131
|
+
description:
|
|
4132
|
+
"returns whether the current time zone is australia/north.",
|
|
3838
4133
|
examples: [
|
|
3839
4134
|
"Date.australia_north?",
|
|
3840
4135
|
"Date.new(\"2024-03-05\").australia_north?",
|
|
@@ -3843,7 +4138,8 @@ class Code
|
|
|
3843
4138
|
},
|
|
3844
4139
|
"australia_perth?" => {
|
|
3845
4140
|
name: "australia_perth?",
|
|
3846
|
-
description:
|
|
4141
|
+
description:
|
|
4142
|
+
"returns whether the current time zone is australia/perth.",
|
|
3847
4143
|
examples: [
|
|
3848
4144
|
"Date.australia_perth?",
|
|
3849
4145
|
"Date.new(\"2024-03-05\").australia_perth?",
|
|
@@ -3852,7 +4148,8 @@ class Code
|
|
|
3852
4148
|
},
|
|
3853
4149
|
"australia_queensland?" => {
|
|
3854
4150
|
name: "australia_queensland?",
|
|
3855
|
-
description:
|
|
4151
|
+
description:
|
|
4152
|
+
"returns whether the current time zone is australia/queensland.",
|
|
3856
4153
|
examples: [
|
|
3857
4154
|
"Date.australia_queensland?",
|
|
3858
4155
|
"Date.new(\"2024-03-05\").australia_queensland?",
|
|
@@ -3861,7 +4158,8 @@ class Code
|
|
|
3861
4158
|
},
|
|
3862
4159
|
"australia_south?" => {
|
|
3863
4160
|
name: "australia_south?",
|
|
3864
|
-
description:
|
|
4161
|
+
description:
|
|
4162
|
+
"returns whether the current time zone is australia/south.",
|
|
3865
4163
|
examples: [
|
|
3866
4164
|
"Date.australia_south?",
|
|
3867
4165
|
"Date.new(\"2024-03-05\").australia_south?",
|
|
@@ -3870,7 +4168,8 @@ class Code
|
|
|
3870
4168
|
},
|
|
3871
4169
|
"australia_sydney?" => {
|
|
3872
4170
|
name: "australia_sydney?",
|
|
3873
|
-
description:
|
|
4171
|
+
description:
|
|
4172
|
+
"returns whether the current time zone is australia/sydney.",
|
|
3874
4173
|
examples: [
|
|
3875
4174
|
"Date.australia_sydney?",
|
|
3876
4175
|
"Date.new(\"2024-03-05\").australia_sydney?",
|
|
@@ -3879,7 +4178,8 @@ class Code
|
|
|
3879
4178
|
},
|
|
3880
4179
|
"australia_tasmania?" => {
|
|
3881
4180
|
name: "australia_tasmania?",
|
|
3882
|
-
description:
|
|
4181
|
+
description:
|
|
4182
|
+
"returns whether the current time zone is australia/tasmania.",
|
|
3883
4183
|
examples: [
|
|
3884
4184
|
"Date.australia_tasmania?",
|
|
3885
4185
|
"Date.new(\"2024-03-05\").australia_tasmania?",
|
|
@@ -3888,7 +4188,8 @@ class Code
|
|
|
3888
4188
|
},
|
|
3889
4189
|
"australia_victoria?" => {
|
|
3890
4190
|
name: "australia_victoria?",
|
|
3891
|
-
description:
|
|
4191
|
+
description:
|
|
4192
|
+
"returns whether the current time zone is australia/victoria.",
|
|
3892
4193
|
examples: [
|
|
3893
4194
|
"Date.australia_victoria?",
|
|
3894
4195
|
"Date.new(\"2024-03-05\").australia_victoria?",
|
|
@@ -3897,7 +4198,8 @@ class Code
|
|
|
3897
4198
|
},
|
|
3898
4199
|
"australia_west?" => {
|
|
3899
4200
|
name: "australia_west?",
|
|
3900
|
-
description:
|
|
4201
|
+
description:
|
|
4202
|
+
"returns whether the current time zone is australia/west.",
|
|
3901
4203
|
examples: [
|
|
3902
4204
|
"Date.australia_west?",
|
|
3903
4205
|
"Date.new(\"2024-03-05\").australia_west?",
|
|
@@ -3906,7 +4208,8 @@ class Code
|
|
|
3906
4208
|
},
|
|
3907
4209
|
"australia_yancowinna?" => {
|
|
3908
4210
|
name: "australia_yancowinna?",
|
|
3909
|
-
description:
|
|
4211
|
+
description:
|
|
4212
|
+
"returns whether the current time zone is australia/yancowinna.",
|
|
3910
4213
|
examples: [
|
|
3911
4214
|
"Date.australia_yancowinna?",
|
|
3912
4215
|
"Date.new(\"2024-03-05\").australia_yancowinna?",
|
|
@@ -3924,7 +4227,8 @@ class Code
|
|
|
3924
4227
|
},
|
|
3925
4228
|
"brazil_denoronha?" => {
|
|
3926
4229
|
name: "brazil_denoronha?",
|
|
3927
|
-
description:
|
|
4230
|
+
description:
|
|
4231
|
+
"returns whether the current time zone is brazil/denoronha.",
|
|
3928
4232
|
examples: [
|
|
3929
4233
|
"Date.brazil_denoronha?",
|
|
3930
4234
|
"Date.new(\"2024-03-05\").brazil_denoronha?",
|
|
@@ -3969,7 +4273,8 @@ class Code
|
|
|
3969
4273
|
},
|
|
3970
4274
|
"canada_atlantic?" => {
|
|
3971
4275
|
name: "canada_atlantic?",
|
|
3972
|
-
description:
|
|
4276
|
+
description:
|
|
4277
|
+
"returns whether the current time zone is canada/atlantic.",
|
|
3973
4278
|
examples: [
|
|
3974
4279
|
"Date.canada_atlantic?",
|
|
3975
4280
|
"Date.new(\"2024-03-05\").canada_atlantic?",
|
|
@@ -3978,7 +4283,8 @@ class Code
|
|
|
3978
4283
|
},
|
|
3979
4284
|
"canada_central?" => {
|
|
3980
4285
|
name: "canada_central?",
|
|
3981
|
-
description:
|
|
4286
|
+
description:
|
|
4287
|
+
"returns whether the current time zone is canada/central.",
|
|
3982
4288
|
examples: [
|
|
3983
4289
|
"Date.canada_central?",
|
|
3984
4290
|
"Date.new(\"2024-03-05\").canada_central?",
|
|
@@ -3987,7 +4293,8 @@ class Code
|
|
|
3987
4293
|
},
|
|
3988
4294
|
"canada_eastern?" => {
|
|
3989
4295
|
name: "canada_eastern?",
|
|
3990
|
-
description:
|
|
4296
|
+
description:
|
|
4297
|
+
"returns whether the current time zone is canada/eastern.",
|
|
3991
4298
|
examples: [
|
|
3992
4299
|
"Date.canada_eastern?",
|
|
3993
4300
|
"Date.new(\"2024-03-05\").canada_eastern?",
|
|
@@ -3996,7 +4303,8 @@ class Code
|
|
|
3996
4303
|
},
|
|
3997
4304
|
"canada_mountain?" => {
|
|
3998
4305
|
name: "canada_mountain?",
|
|
3999
|
-
description:
|
|
4306
|
+
description:
|
|
4307
|
+
"returns whether the current time zone is canada/mountain.",
|
|
4000
4308
|
examples: [
|
|
4001
4309
|
"Date.canada_mountain?",
|
|
4002
4310
|
"Date.new(\"2024-03-05\").canada_mountain?",
|
|
@@ -4005,7 +4313,8 @@ class Code
|
|
|
4005
4313
|
},
|
|
4006
4314
|
"canada_newfoundland?" => {
|
|
4007
4315
|
name: "canada_newfoundland?",
|
|
4008
|
-
description:
|
|
4316
|
+
description:
|
|
4317
|
+
"returns whether the current time zone is canada/newfoundland.",
|
|
4009
4318
|
examples: [
|
|
4010
4319
|
"Date.canada_newfoundland?",
|
|
4011
4320
|
"Date.new(\"2024-03-05\").canada_newfoundland?",
|
|
@@ -4014,7 +4323,8 @@ class Code
|
|
|
4014
4323
|
},
|
|
4015
4324
|
"canada_pacific?" => {
|
|
4016
4325
|
name: "canada_pacific?",
|
|
4017
|
-
description:
|
|
4326
|
+
description:
|
|
4327
|
+
"returns whether the current time zone is canada/pacific.",
|
|
4018
4328
|
examples: [
|
|
4019
4329
|
"Date.canada_pacific?",
|
|
4020
4330
|
"Date.new(\"2024-03-05\").canada_pacific?",
|
|
@@ -4023,7 +4333,8 @@ class Code
|
|
|
4023
4333
|
},
|
|
4024
4334
|
"canada_saskatchewan?" => {
|
|
4025
4335
|
name: "canada_saskatchewan?",
|
|
4026
|
-
description:
|
|
4336
|
+
description:
|
|
4337
|
+
"returns whether the current time zone is canada/saskatchewan.",
|
|
4027
4338
|
examples: [
|
|
4028
4339
|
"Date.canada_saskatchewan?",
|
|
4029
4340
|
"Date.new(\"2024-03-05\").canada_saskatchewan?",
|
|
@@ -4041,7 +4352,8 @@ class Code
|
|
|
4041
4352
|
},
|
|
4042
4353
|
"chile_continental?" => {
|
|
4043
4354
|
name: "chile_continental?",
|
|
4044
|
-
description:
|
|
4355
|
+
description:
|
|
4356
|
+
"returns whether the current time zone is chile/continental.",
|
|
4045
4357
|
examples: [
|
|
4046
4358
|
"Date.chile_continental?",
|
|
4047
4359
|
"Date.new(\"2024-03-05\").chile_continental?",
|
|
@@ -4050,7 +4362,8 @@ class Code
|
|
|
4050
4362
|
},
|
|
4051
4363
|
"chile_easterisland?" => {
|
|
4052
4364
|
name: "chile_easterisland?",
|
|
4053
|
-
description:
|
|
4365
|
+
description:
|
|
4366
|
+
"returns whether the current time zone is chile/easterisland.",
|
|
4054
4367
|
examples: [
|
|
4055
4368
|
"Date.chile_easterisland?",
|
|
4056
4369
|
"Date.new(\"2024-03-05\").chile_easterisland?",
|
|
@@ -4383,7 +4696,8 @@ class Code
|
|
|
4383
4696
|
},
|
|
4384
4697
|
"etc_greenwich?" => {
|
|
4385
4698
|
name: "etc_greenwich?",
|
|
4386
|
-
description:
|
|
4699
|
+
description:
|
|
4700
|
+
"returns whether the current time zone is etc/greenwich.",
|
|
4387
4701
|
examples: [
|
|
4388
4702
|
"Date.etc_greenwich?",
|
|
4389
4703
|
"Date.new(\"2024-03-05\").etc_greenwich?",
|
|
@@ -4410,7 +4724,8 @@ class Code
|
|
|
4410
4724
|
},
|
|
4411
4725
|
"etc_universal?" => {
|
|
4412
4726
|
name: "etc_universal?",
|
|
4413
|
-
description:
|
|
4727
|
+
description:
|
|
4728
|
+
"returns whether the current time zone is etc/universal.",
|
|
4414
4729
|
examples: [
|
|
4415
4730
|
"Date.etc_universal?",
|
|
4416
4731
|
"Date.new(\"2024-03-05\").etc_universal?",
|
|
@@ -4428,7 +4743,8 @@ class Code
|
|
|
4428
4743
|
},
|
|
4429
4744
|
"europe_amsterdam?" => {
|
|
4430
4745
|
name: "europe_amsterdam?",
|
|
4431
|
-
description:
|
|
4746
|
+
description:
|
|
4747
|
+
"returns whether the current time zone is europe/amsterdam.",
|
|
4432
4748
|
examples: [
|
|
4433
4749
|
"Date.europe_amsterdam?",
|
|
4434
4750
|
"Date.new(\"2024-03-05\").europe_amsterdam?",
|
|
@@ -4437,7 +4753,8 @@ class Code
|
|
|
4437
4753
|
},
|
|
4438
4754
|
"europe_andorra?" => {
|
|
4439
4755
|
name: "europe_andorra?",
|
|
4440
|
-
description:
|
|
4756
|
+
description:
|
|
4757
|
+
"returns whether the current time zone is europe/andorra.",
|
|
4441
4758
|
examples: [
|
|
4442
4759
|
"Date.europe_andorra?",
|
|
4443
4760
|
"Date.new(\"2024-03-05\").europe_andorra?",
|
|
@@ -4446,7 +4763,8 @@ class Code
|
|
|
4446
4763
|
},
|
|
4447
4764
|
"europe_astrakhan?" => {
|
|
4448
4765
|
name: "europe_astrakhan?",
|
|
4449
|
-
description:
|
|
4766
|
+
description:
|
|
4767
|
+
"returns whether the current time zone is europe/astrakhan.",
|
|
4450
4768
|
examples: [
|
|
4451
4769
|
"Date.europe_astrakhan?",
|
|
4452
4770
|
"Date.new(\"2024-03-05\").europe_astrakhan?",
|
|
@@ -4455,7 +4773,8 @@ class Code
|
|
|
4455
4773
|
},
|
|
4456
4774
|
"europe_athens?" => {
|
|
4457
4775
|
name: "europe_athens?",
|
|
4458
|
-
description:
|
|
4776
|
+
description:
|
|
4777
|
+
"returns whether the current time zone is europe/athens.",
|
|
4459
4778
|
examples: [
|
|
4460
4779
|
"Date.europe_athens?",
|
|
4461
4780
|
"Date.new(\"2024-03-05\").europe_athens?",
|
|
@@ -4464,7 +4783,8 @@ class Code
|
|
|
4464
4783
|
},
|
|
4465
4784
|
"europe_belfast?" => {
|
|
4466
4785
|
name: "europe_belfast?",
|
|
4467
|
-
description:
|
|
4786
|
+
description:
|
|
4787
|
+
"returns whether the current time zone is europe/belfast.",
|
|
4468
4788
|
examples: [
|
|
4469
4789
|
"Date.europe_belfast?",
|
|
4470
4790
|
"Date.new(\"2024-03-05\").europe_belfast?",
|
|
@@ -4473,7 +4793,8 @@ class Code
|
|
|
4473
4793
|
},
|
|
4474
4794
|
"europe_belgrade?" => {
|
|
4475
4795
|
name: "europe_belgrade?",
|
|
4476
|
-
description:
|
|
4796
|
+
description:
|
|
4797
|
+
"returns whether the current time zone is europe/belgrade.",
|
|
4477
4798
|
examples: [
|
|
4478
4799
|
"Date.europe_belgrade?",
|
|
4479
4800
|
"Date.new(\"2024-03-05\").europe_belgrade?",
|
|
@@ -4482,7 +4803,8 @@ class Code
|
|
|
4482
4803
|
},
|
|
4483
4804
|
"europe_berlin?" => {
|
|
4484
4805
|
name: "europe_berlin?",
|
|
4485
|
-
description:
|
|
4806
|
+
description:
|
|
4807
|
+
"returns whether the current time zone is europe/berlin.",
|
|
4486
4808
|
examples: [
|
|
4487
4809
|
"Date.europe_berlin?",
|
|
4488
4810
|
"Date.new(\"2024-03-05\").europe_berlin?",
|
|
@@ -4491,7 +4813,8 @@ class Code
|
|
|
4491
4813
|
},
|
|
4492
4814
|
"europe_bratislava?" => {
|
|
4493
4815
|
name: "europe_bratislava?",
|
|
4494
|
-
description:
|
|
4816
|
+
description:
|
|
4817
|
+
"returns whether the current time zone is europe/bratislava.",
|
|
4495
4818
|
examples: [
|
|
4496
4819
|
"Date.europe_bratislava?",
|
|
4497
4820
|
"Date.new(\"2024-03-05\").europe_bratislava?",
|
|
@@ -4500,7 +4823,8 @@ class Code
|
|
|
4500
4823
|
},
|
|
4501
4824
|
"europe_brussels?" => {
|
|
4502
4825
|
name: "europe_brussels?",
|
|
4503
|
-
description:
|
|
4826
|
+
description:
|
|
4827
|
+
"returns whether the current time zone is europe/brussels.",
|
|
4504
4828
|
examples: [
|
|
4505
4829
|
"Date.europe_brussels?",
|
|
4506
4830
|
"Date.new(\"2024-03-05\").europe_brussels?",
|
|
@@ -4509,7 +4833,8 @@ class Code
|
|
|
4509
4833
|
},
|
|
4510
4834
|
"europe_bucharest?" => {
|
|
4511
4835
|
name: "europe_bucharest?",
|
|
4512
|
-
description:
|
|
4836
|
+
description:
|
|
4837
|
+
"returns whether the current time zone is europe/bucharest.",
|
|
4513
4838
|
examples: [
|
|
4514
4839
|
"Date.europe_bucharest?",
|
|
4515
4840
|
"Date.new(\"2024-03-05\").europe_bucharest?",
|
|
@@ -4518,7 +4843,8 @@ class Code
|
|
|
4518
4843
|
},
|
|
4519
4844
|
"europe_budapest?" => {
|
|
4520
4845
|
name: "europe_budapest?",
|
|
4521
|
-
description:
|
|
4846
|
+
description:
|
|
4847
|
+
"returns whether the current time zone is europe/budapest.",
|
|
4522
4848
|
examples: [
|
|
4523
4849
|
"Date.europe_budapest?",
|
|
4524
4850
|
"Date.new(\"2024-03-05\").europe_budapest?",
|
|
@@ -4527,7 +4853,8 @@ class Code
|
|
|
4527
4853
|
},
|
|
4528
4854
|
"europe_busingen?" => {
|
|
4529
4855
|
name: "europe_busingen?",
|
|
4530
|
-
description:
|
|
4856
|
+
description:
|
|
4857
|
+
"returns whether the current time zone is europe/busingen.",
|
|
4531
4858
|
examples: [
|
|
4532
4859
|
"Date.europe_busingen?",
|
|
4533
4860
|
"Date.new(\"2024-03-05\").europe_busingen?",
|
|
@@ -4536,7 +4863,8 @@ class Code
|
|
|
4536
4863
|
},
|
|
4537
4864
|
"europe_chisinau?" => {
|
|
4538
4865
|
name: "europe_chisinau?",
|
|
4539
|
-
description:
|
|
4866
|
+
description:
|
|
4867
|
+
"returns whether the current time zone is europe/chisinau.",
|
|
4540
4868
|
examples: [
|
|
4541
4869
|
"Date.europe_chisinau?",
|
|
4542
4870
|
"Date.new(\"2024-03-05\").europe_chisinau?",
|
|
@@ -4545,7 +4873,8 @@ class Code
|
|
|
4545
4873
|
},
|
|
4546
4874
|
"europe_copenhagen?" => {
|
|
4547
4875
|
name: "europe_copenhagen?",
|
|
4548
|
-
description:
|
|
4876
|
+
description:
|
|
4877
|
+
"returns whether the current time zone is europe/copenhagen.",
|
|
4549
4878
|
examples: [
|
|
4550
4879
|
"Date.europe_copenhagen?",
|
|
4551
4880
|
"Date.new(\"2024-03-05\").europe_copenhagen?",
|
|
@@ -4554,7 +4883,8 @@ class Code
|
|
|
4554
4883
|
},
|
|
4555
4884
|
"europe_dublin?" => {
|
|
4556
4885
|
name: "europe_dublin?",
|
|
4557
|
-
description:
|
|
4886
|
+
description:
|
|
4887
|
+
"returns whether the current time zone is europe/dublin.",
|
|
4558
4888
|
examples: [
|
|
4559
4889
|
"Date.europe_dublin?",
|
|
4560
4890
|
"Date.new(\"2024-03-05\").europe_dublin?",
|
|
@@ -4563,7 +4893,8 @@ class Code
|
|
|
4563
4893
|
},
|
|
4564
4894
|
"europe_gibraltar?" => {
|
|
4565
4895
|
name: "europe_gibraltar?",
|
|
4566
|
-
description:
|
|
4896
|
+
description:
|
|
4897
|
+
"returns whether the current time zone is europe/gibraltar.",
|
|
4567
4898
|
examples: [
|
|
4568
4899
|
"Date.europe_gibraltar?",
|
|
4569
4900
|
"Date.new(\"2024-03-05\").europe_gibraltar?",
|
|
@@ -4572,7 +4903,8 @@ class Code
|
|
|
4572
4903
|
},
|
|
4573
4904
|
"europe_guernsey?" => {
|
|
4574
4905
|
name: "europe_guernsey?",
|
|
4575
|
-
description:
|
|
4906
|
+
description:
|
|
4907
|
+
"returns whether the current time zone is europe/guernsey.",
|
|
4576
4908
|
examples: [
|
|
4577
4909
|
"Date.europe_guernsey?",
|
|
4578
4910
|
"Date.new(\"2024-03-05\").europe_guernsey?",
|
|
@@ -4581,7 +4913,8 @@ class Code
|
|
|
4581
4913
|
},
|
|
4582
4914
|
"europe_helsinki?" => {
|
|
4583
4915
|
name: "europe_helsinki?",
|
|
4584
|
-
description:
|
|
4916
|
+
description:
|
|
4917
|
+
"returns whether the current time zone is europe/helsinki.",
|
|
4585
4918
|
examples: [
|
|
4586
4919
|
"Date.europe_helsinki?",
|
|
4587
4920
|
"Date.new(\"2024-03-05\").europe_helsinki?",
|
|
@@ -4590,7 +4923,8 @@ class Code
|
|
|
4590
4923
|
},
|
|
4591
4924
|
"europe_isle_of_man?" => {
|
|
4592
4925
|
name: "europe_isle_of_man?",
|
|
4593
|
-
description:
|
|
4926
|
+
description:
|
|
4927
|
+
"returns whether the current time zone is europe/isle_of_man.",
|
|
4594
4928
|
examples: [
|
|
4595
4929
|
"Date.europe_isle_of_man?",
|
|
4596
4930
|
"Date.new(\"2024-03-05\").europe_isle_of_man?",
|
|
@@ -4599,7 +4933,8 @@ class Code
|
|
|
4599
4933
|
},
|
|
4600
4934
|
"europe_istanbul?" => {
|
|
4601
4935
|
name: "europe_istanbul?",
|
|
4602
|
-
description:
|
|
4936
|
+
description:
|
|
4937
|
+
"returns whether the current time zone is europe/istanbul.",
|
|
4603
4938
|
examples: [
|
|
4604
4939
|
"Date.europe_istanbul?",
|
|
4605
4940
|
"Date.new(\"2024-03-05\").europe_istanbul?",
|
|
@@ -4608,7 +4943,8 @@ class Code
|
|
|
4608
4943
|
},
|
|
4609
4944
|
"europe_jersey?" => {
|
|
4610
4945
|
name: "europe_jersey?",
|
|
4611
|
-
description:
|
|
4946
|
+
description:
|
|
4947
|
+
"returns whether the current time zone is europe/jersey.",
|
|
4612
4948
|
examples: [
|
|
4613
4949
|
"Date.europe_jersey?",
|
|
4614
4950
|
"Date.new(\"2024-03-05\").europe_jersey?",
|
|
@@ -4617,7 +4953,8 @@ class Code
|
|
|
4617
4953
|
},
|
|
4618
4954
|
"europe_kaliningrad?" => {
|
|
4619
4955
|
name: "europe_kaliningrad?",
|
|
4620
|
-
description:
|
|
4956
|
+
description:
|
|
4957
|
+
"returns whether the current time zone is europe/kaliningrad.",
|
|
4621
4958
|
examples: [
|
|
4622
4959
|
"Date.europe_kaliningrad?",
|
|
4623
4960
|
"Date.new(\"2024-03-05\").europe_kaliningrad?",
|
|
@@ -4653,7 +4990,8 @@ class Code
|
|
|
4653
4990
|
},
|
|
4654
4991
|
"europe_lisbon?" => {
|
|
4655
4992
|
name: "europe_lisbon?",
|
|
4656
|
-
description:
|
|
4993
|
+
description:
|
|
4994
|
+
"returns whether the current time zone is europe/lisbon.",
|
|
4657
4995
|
examples: [
|
|
4658
4996
|
"Date.europe_lisbon?",
|
|
4659
4997
|
"Date.new(\"2024-03-05\").europe_lisbon?",
|
|
@@ -4662,7 +5000,8 @@ class Code
|
|
|
4662
5000
|
},
|
|
4663
5001
|
"europe_ljubljana?" => {
|
|
4664
5002
|
name: "europe_ljubljana?",
|
|
4665
|
-
description:
|
|
5003
|
+
description:
|
|
5004
|
+
"returns whether the current time zone is europe/ljubljana.",
|
|
4666
5005
|
examples: [
|
|
4667
5006
|
"Date.europe_ljubljana?",
|
|
4668
5007
|
"Date.new(\"2024-03-05\").europe_ljubljana?",
|
|
@@ -4671,7 +5010,8 @@ class Code
|
|
|
4671
5010
|
},
|
|
4672
5011
|
"europe_london?" => {
|
|
4673
5012
|
name: "europe_london?",
|
|
4674
|
-
description:
|
|
5013
|
+
description:
|
|
5014
|
+
"returns whether the current time zone is europe/london.",
|
|
4675
5015
|
examples: [
|
|
4676
5016
|
"Date.europe_london?",
|
|
4677
5017
|
"Date.new(\"2024-03-05\").europe_london?",
|
|
@@ -4680,7 +5020,8 @@ class Code
|
|
|
4680
5020
|
},
|
|
4681
5021
|
"europe_luxembourg?" => {
|
|
4682
5022
|
name: "europe_luxembourg?",
|
|
4683
|
-
description:
|
|
5023
|
+
description:
|
|
5024
|
+
"returns whether the current time zone is europe/luxembourg.",
|
|
4684
5025
|
examples: [
|
|
4685
5026
|
"Date.europe_luxembourg?",
|
|
4686
5027
|
"Date.new(\"2024-03-05\").europe_luxembourg?",
|
|
@@ -4689,7 +5030,8 @@ class Code
|
|
|
4689
5030
|
},
|
|
4690
5031
|
"europe_madrid?" => {
|
|
4691
5032
|
name: "europe_madrid?",
|
|
4692
|
-
description:
|
|
5033
|
+
description:
|
|
5034
|
+
"returns whether the current time zone is europe/madrid.",
|
|
4693
5035
|
examples: [
|
|
4694
5036
|
"Date.europe_madrid?",
|
|
4695
5037
|
"Date.new(\"2024-03-05\").europe_madrid?",
|
|
@@ -4707,7 +5049,8 @@ class Code
|
|
|
4707
5049
|
},
|
|
4708
5050
|
"europe_mariehamn?" => {
|
|
4709
5051
|
name: "europe_mariehamn?",
|
|
4710
|
-
description:
|
|
5052
|
+
description:
|
|
5053
|
+
"returns whether the current time zone is europe/mariehamn.",
|
|
4711
5054
|
examples: [
|
|
4712
5055
|
"Date.europe_mariehamn?",
|
|
4713
5056
|
"Date.new(\"2024-03-05\").europe_mariehamn?",
|
|
@@ -4725,7 +5068,8 @@ class Code
|
|
|
4725
5068
|
},
|
|
4726
5069
|
"europe_monaco?" => {
|
|
4727
5070
|
name: "europe_monaco?",
|
|
4728
|
-
description:
|
|
5071
|
+
description:
|
|
5072
|
+
"returns whether the current time zone is europe/monaco.",
|
|
4729
5073
|
examples: [
|
|
4730
5074
|
"Date.europe_monaco?",
|
|
4731
5075
|
"Date.new(\"2024-03-05\").europe_monaco?",
|
|
@@ -4734,7 +5078,8 @@ class Code
|
|
|
4734
5078
|
},
|
|
4735
5079
|
"europe_moscow?" => {
|
|
4736
5080
|
name: "europe_moscow?",
|
|
4737
|
-
description:
|
|
5081
|
+
description:
|
|
5082
|
+
"returns whether the current time zone is europe/moscow.",
|
|
4738
5083
|
examples: [
|
|
4739
5084
|
"Date.europe_moscow?",
|
|
4740
5085
|
"Date.new(\"2024-03-05\").europe_moscow?",
|
|
@@ -4743,7 +5088,8 @@ class Code
|
|
|
4743
5088
|
},
|
|
4744
5089
|
"europe_nicosia?" => {
|
|
4745
5090
|
name: "europe_nicosia?",
|
|
4746
|
-
description:
|
|
5091
|
+
description:
|
|
5092
|
+
"returns whether the current time zone is europe/nicosia.",
|
|
4747
5093
|
examples: [
|
|
4748
5094
|
"Date.europe_nicosia?",
|
|
4749
5095
|
"Date.new(\"2024-03-05\").europe_nicosia?",
|
|
@@ -4770,7 +5116,8 @@ class Code
|
|
|
4770
5116
|
},
|
|
4771
5117
|
"europe_podgorica?" => {
|
|
4772
5118
|
name: "europe_podgorica?",
|
|
4773
|
-
description:
|
|
5119
|
+
description:
|
|
5120
|
+
"returns whether the current time zone is europe/podgorica.",
|
|
4774
5121
|
examples: [
|
|
4775
5122
|
"Date.europe_podgorica?",
|
|
4776
5123
|
"Date.new(\"2024-03-05\").europe_podgorica?",
|
|
@@ -4779,7 +5126,8 @@ class Code
|
|
|
4779
5126
|
},
|
|
4780
5127
|
"europe_prague?" => {
|
|
4781
5128
|
name: "europe_prague?",
|
|
4782
|
-
description:
|
|
5129
|
+
description:
|
|
5130
|
+
"returns whether the current time zone is europe/prague.",
|
|
4783
5131
|
examples: [
|
|
4784
5132
|
"Date.europe_prague?",
|
|
4785
5133
|
"Date.new(\"2024-03-05\").europe_prague?",
|
|
@@ -4806,7 +5154,8 @@ class Code
|
|
|
4806
5154
|
},
|
|
4807
5155
|
"europe_samara?" => {
|
|
4808
5156
|
name: "europe_samara?",
|
|
4809
|
-
description:
|
|
5157
|
+
description:
|
|
5158
|
+
"returns whether the current time zone is europe/samara.",
|
|
4810
5159
|
examples: [
|
|
4811
5160
|
"Date.europe_samara?",
|
|
4812
5161
|
"Date.new(\"2024-03-05\").europe_samara?",
|
|
@@ -4815,7 +5164,8 @@ class Code
|
|
|
4815
5164
|
},
|
|
4816
5165
|
"europe_san_marino?" => {
|
|
4817
5166
|
name: "europe_san_marino?",
|
|
4818
|
-
description:
|
|
5167
|
+
description:
|
|
5168
|
+
"returns whether the current time zone is europe/san_marino.",
|
|
4819
5169
|
examples: [
|
|
4820
5170
|
"Date.europe_san_marino?",
|
|
4821
5171
|
"Date.new(\"2024-03-05\").europe_san_marino?",
|
|
@@ -4824,7 +5174,8 @@ class Code
|
|
|
4824
5174
|
},
|
|
4825
5175
|
"europe_sarajevo?" => {
|
|
4826
5176
|
name: "europe_sarajevo?",
|
|
4827
|
-
description:
|
|
5177
|
+
description:
|
|
5178
|
+
"returns whether the current time zone is europe/sarajevo.",
|
|
4828
5179
|
examples: [
|
|
4829
5180
|
"Date.europe_sarajevo?",
|
|
4830
5181
|
"Date.new(\"2024-03-05\").europe_sarajevo?",
|
|
@@ -4833,7 +5184,8 @@ class Code
|
|
|
4833
5184
|
},
|
|
4834
5185
|
"europe_saratov?" => {
|
|
4835
5186
|
name: "europe_saratov?",
|
|
4836
|
-
description:
|
|
5187
|
+
description:
|
|
5188
|
+
"returns whether the current time zone is europe/saratov.",
|
|
4837
5189
|
examples: [
|
|
4838
5190
|
"Date.europe_saratov?",
|
|
4839
5191
|
"Date.new(\"2024-03-05\").europe_saratov?",
|
|
@@ -4842,7 +5194,8 @@ class Code
|
|
|
4842
5194
|
},
|
|
4843
5195
|
"europe_simferopol?" => {
|
|
4844
5196
|
name: "europe_simferopol?",
|
|
4845
|
-
description:
|
|
5197
|
+
description:
|
|
5198
|
+
"returns whether the current time zone is europe/simferopol.",
|
|
4846
5199
|
examples: [
|
|
4847
5200
|
"Date.europe_simferopol?",
|
|
4848
5201
|
"Date.new(\"2024-03-05\").europe_simferopol?",
|
|
@@ -4851,7 +5204,8 @@ class Code
|
|
|
4851
5204
|
},
|
|
4852
5205
|
"europe_skopje?" => {
|
|
4853
5206
|
name: "europe_skopje?",
|
|
4854
|
-
description:
|
|
5207
|
+
description:
|
|
5208
|
+
"returns whether the current time zone is europe/skopje.",
|
|
4855
5209
|
examples: [
|
|
4856
5210
|
"Date.europe_skopje?",
|
|
4857
5211
|
"Date.new(\"2024-03-05\").europe_skopje?",
|
|
@@ -4869,7 +5223,8 @@ class Code
|
|
|
4869
5223
|
},
|
|
4870
5224
|
"europe_stockholm?" => {
|
|
4871
5225
|
name: "europe_stockholm?",
|
|
4872
|
-
description:
|
|
5226
|
+
description:
|
|
5227
|
+
"returns whether the current time zone is europe/stockholm.",
|
|
4873
5228
|
examples: [
|
|
4874
5229
|
"Date.europe_stockholm?",
|
|
4875
5230
|
"Date.new(\"2024-03-05\").europe_stockholm?",
|
|
@@ -4878,7 +5233,8 @@ class Code
|
|
|
4878
5233
|
},
|
|
4879
5234
|
"europe_tallinn?" => {
|
|
4880
5235
|
name: "europe_tallinn?",
|
|
4881
|
-
description:
|
|
5236
|
+
description:
|
|
5237
|
+
"returns whether the current time zone is europe/tallinn.",
|
|
4882
5238
|
examples: [
|
|
4883
5239
|
"Date.europe_tallinn?",
|
|
4884
5240
|
"Date.new(\"2024-03-05\").europe_tallinn?",
|
|
@@ -4887,7 +5243,8 @@ class Code
|
|
|
4887
5243
|
},
|
|
4888
5244
|
"europe_tirane?" => {
|
|
4889
5245
|
name: "europe_tirane?",
|
|
4890
|
-
description:
|
|
5246
|
+
description:
|
|
5247
|
+
"returns whether the current time zone is europe/tirane.",
|
|
4891
5248
|
examples: [
|
|
4892
5249
|
"Date.europe_tirane?",
|
|
4893
5250
|
"Date.new(\"2024-03-05\").europe_tirane?",
|
|
@@ -4896,7 +5253,8 @@ class Code
|
|
|
4896
5253
|
},
|
|
4897
5254
|
"europe_tiraspol?" => {
|
|
4898
5255
|
name: "europe_tiraspol?",
|
|
4899
|
-
description:
|
|
5256
|
+
description:
|
|
5257
|
+
"returns whether the current time zone is europe/tiraspol.",
|
|
4900
5258
|
examples: [
|
|
4901
5259
|
"Date.europe_tiraspol?",
|
|
4902
5260
|
"Date.new(\"2024-03-05\").europe_tiraspol?",
|
|
@@ -4905,7 +5263,8 @@ class Code
|
|
|
4905
5263
|
},
|
|
4906
5264
|
"europe_ulyanovsk?" => {
|
|
4907
5265
|
name: "europe_ulyanovsk?",
|
|
4908
|
-
description:
|
|
5266
|
+
description:
|
|
5267
|
+
"returns whether the current time zone is europe/ulyanovsk.",
|
|
4909
5268
|
examples: [
|
|
4910
5269
|
"Date.europe_ulyanovsk?",
|
|
4911
5270
|
"Date.new(\"2024-03-05\").europe_ulyanovsk?",
|
|
@@ -4914,7 +5273,8 @@ class Code
|
|
|
4914
5273
|
},
|
|
4915
5274
|
"europe_uzhgorod?" => {
|
|
4916
5275
|
name: "europe_uzhgorod?",
|
|
4917
|
-
description:
|
|
5276
|
+
description:
|
|
5277
|
+
"returns whether the current time zone is europe/uzhgorod.",
|
|
4918
5278
|
examples: [
|
|
4919
5279
|
"Date.europe_uzhgorod?",
|
|
4920
5280
|
"Date.new(\"2024-03-05\").europe_uzhgorod?",
|
|
@@ -4932,7 +5292,8 @@ class Code
|
|
|
4932
5292
|
},
|
|
4933
5293
|
"europe_vatican?" => {
|
|
4934
5294
|
name: "europe_vatican?",
|
|
4935
|
-
description:
|
|
5295
|
+
description:
|
|
5296
|
+
"returns whether the current time zone is europe/vatican.",
|
|
4936
5297
|
examples: [
|
|
4937
5298
|
"Date.europe_vatican?",
|
|
4938
5299
|
"Date.new(\"2024-03-05\").europe_vatican?",
|
|
@@ -4941,7 +5302,8 @@ class Code
|
|
|
4941
5302
|
},
|
|
4942
5303
|
"europe_vienna?" => {
|
|
4943
5304
|
name: "europe_vienna?",
|
|
4944
|
-
description:
|
|
5305
|
+
description:
|
|
5306
|
+
"returns whether the current time zone is europe/vienna.",
|
|
4945
5307
|
examples: [
|
|
4946
5308
|
"Date.europe_vienna?",
|
|
4947
5309
|
"Date.new(\"2024-03-05\").europe_vienna?",
|
|
@@ -4950,7 +5312,8 @@ class Code
|
|
|
4950
5312
|
},
|
|
4951
5313
|
"europe_vilnius?" => {
|
|
4952
5314
|
name: "europe_vilnius?",
|
|
4953
|
-
description:
|
|
5315
|
+
description:
|
|
5316
|
+
"returns whether the current time zone is europe/vilnius.",
|
|
4954
5317
|
examples: [
|
|
4955
5318
|
"Date.europe_vilnius?",
|
|
4956
5319
|
"Date.new(\"2024-03-05\").europe_vilnius?",
|
|
@@ -4959,7 +5322,8 @@ class Code
|
|
|
4959
5322
|
},
|
|
4960
5323
|
"europe_volgograd?" => {
|
|
4961
5324
|
name: "europe_volgograd?",
|
|
4962
|
-
description:
|
|
5325
|
+
description:
|
|
5326
|
+
"returns whether the current time zone is europe/volgograd.",
|
|
4963
5327
|
examples: [
|
|
4964
5328
|
"Date.europe_volgograd?",
|
|
4965
5329
|
"Date.new(\"2024-03-05\").europe_volgograd?",
|
|
@@ -4968,7 +5332,8 @@ class Code
|
|
|
4968
5332
|
},
|
|
4969
5333
|
"europe_warsaw?" => {
|
|
4970
5334
|
name: "europe_warsaw?",
|
|
4971
|
-
description:
|
|
5335
|
+
description:
|
|
5336
|
+
"returns whether the current time zone is europe/warsaw.",
|
|
4972
5337
|
examples: [
|
|
4973
5338
|
"Date.europe_warsaw?",
|
|
4974
5339
|
"Date.new(\"2024-03-05\").europe_warsaw?",
|
|
@@ -4977,7 +5342,8 @@ class Code
|
|
|
4977
5342
|
},
|
|
4978
5343
|
"europe_zagreb?" => {
|
|
4979
5344
|
name: "europe_zagreb?",
|
|
4980
|
-
description:
|
|
5345
|
+
description:
|
|
5346
|
+
"returns whether the current time zone is europe/zagreb.",
|
|
4981
5347
|
examples: [
|
|
4982
5348
|
"Date.europe_zagreb?",
|
|
4983
5349
|
"Date.new(\"2024-03-05\").europe_zagreb?",
|
|
@@ -4986,7 +5352,8 @@ class Code
|
|
|
4986
5352
|
},
|
|
4987
5353
|
"europe_zaporozhye?" => {
|
|
4988
5354
|
name: "europe_zaporozhye?",
|
|
4989
|
-
description:
|
|
5355
|
+
description:
|
|
5356
|
+
"returns whether the current time zone is europe/zaporozhye.",
|
|
4990
5357
|
examples: [
|
|
4991
5358
|
"Date.europe_zaporozhye?",
|
|
4992
5359
|
"Date.new(\"2024-03-05\").europe_zaporozhye?",
|
|
@@ -4995,7 +5362,8 @@ class Code
|
|
|
4995
5362
|
},
|
|
4996
5363
|
"europe_zurich?" => {
|
|
4997
5364
|
name: "europe_zurich?",
|
|
4998
|
-
description:
|
|
5365
|
+
description:
|
|
5366
|
+
"returns whether the current time zone is europe/zurich.",
|
|
4999
5367
|
examples: [
|
|
5000
5368
|
"Date.europe_zurich?",
|
|
5001
5369
|
"Date.new(\"2024-03-05\").europe_zurich?",
|
|
@@ -5103,7 +5471,8 @@ class Code
|
|
|
5103
5471
|
},
|
|
5104
5472
|
"indian_antananarivo?" => {
|
|
5105
5473
|
name: "indian_antananarivo?",
|
|
5106
|
-
description:
|
|
5474
|
+
description:
|
|
5475
|
+
"returns whether the current time zone is indian/antananarivo.",
|
|
5107
5476
|
examples: [
|
|
5108
5477
|
"Date.indian_antananarivo?",
|
|
5109
5478
|
"Date.new(\"2024-03-05\").indian_antananarivo?",
|
|
@@ -5112,7 +5481,8 @@ class Code
|
|
|
5112
5481
|
},
|
|
5113
5482
|
"indian_chagos?" => {
|
|
5114
5483
|
name: "indian_chagos?",
|
|
5115
|
-
description:
|
|
5484
|
+
description:
|
|
5485
|
+
"returns whether the current time zone is indian/chagos.",
|
|
5116
5486
|
examples: [
|
|
5117
5487
|
"Date.indian_chagos?",
|
|
5118
5488
|
"Date.new(\"2024-03-05\").indian_chagos?",
|
|
@@ -5121,7 +5491,8 @@ class Code
|
|
|
5121
5491
|
},
|
|
5122
5492
|
"indian_christmas?" => {
|
|
5123
5493
|
name: "indian_christmas?",
|
|
5124
|
-
description:
|
|
5494
|
+
description:
|
|
5495
|
+
"returns whether the current time zone is indian/christmas.",
|
|
5125
5496
|
examples: [
|
|
5126
5497
|
"Date.indian_christmas?",
|
|
5127
5498
|
"Date.new(\"2024-03-05\").indian_christmas?",
|
|
@@ -5139,7 +5510,8 @@ class Code
|
|
|
5139
5510
|
},
|
|
5140
5511
|
"indian_comoro?" => {
|
|
5141
5512
|
name: "indian_comoro?",
|
|
5142
|
-
description:
|
|
5513
|
+
description:
|
|
5514
|
+
"returns whether the current time zone is indian/comoro.",
|
|
5143
5515
|
examples: [
|
|
5144
5516
|
"Date.indian_comoro?",
|
|
5145
5517
|
"Date.new(\"2024-03-05\").indian_comoro?",
|
|
@@ -5148,7 +5520,8 @@ class Code
|
|
|
5148
5520
|
},
|
|
5149
5521
|
"indian_kerguelen?" => {
|
|
5150
5522
|
name: "indian_kerguelen?",
|
|
5151
|
-
description:
|
|
5523
|
+
description:
|
|
5524
|
+
"returns whether the current time zone is indian/kerguelen.",
|
|
5152
5525
|
examples: [
|
|
5153
5526
|
"Date.indian_kerguelen?",
|
|
5154
5527
|
"Date.new(\"2024-03-05\").indian_kerguelen?",
|
|
@@ -5166,7 +5539,8 @@ class Code
|
|
|
5166
5539
|
},
|
|
5167
5540
|
"indian_maldives?" => {
|
|
5168
5541
|
name: "indian_maldives?",
|
|
5169
|
-
description:
|
|
5542
|
+
description:
|
|
5543
|
+
"returns whether the current time zone is indian/maldives.",
|
|
5170
5544
|
examples: [
|
|
5171
5545
|
"Date.indian_maldives?",
|
|
5172
5546
|
"Date.new(\"2024-03-05\").indian_maldives?",
|
|
@@ -5175,7 +5549,8 @@ class Code
|
|
|
5175
5549
|
},
|
|
5176
5550
|
"indian_mauritius?" => {
|
|
5177
5551
|
name: "indian_mauritius?",
|
|
5178
|
-
description:
|
|
5552
|
+
description:
|
|
5553
|
+
"returns whether the current time zone is indian/mauritius.",
|
|
5179
5554
|
examples: [
|
|
5180
5555
|
"Date.indian_mauritius?",
|
|
5181
5556
|
"Date.new(\"2024-03-05\").indian_mauritius?",
|
|
@@ -5184,7 +5559,8 @@ class Code
|
|
|
5184
5559
|
},
|
|
5185
5560
|
"indian_mayotte?" => {
|
|
5186
5561
|
name: "indian_mayotte?",
|
|
5187
|
-
description:
|
|
5562
|
+
description:
|
|
5563
|
+
"returns whether the current time zone is indian/mayotte.",
|
|
5188
5564
|
examples: [
|
|
5189
5565
|
"Date.indian_mayotte?",
|
|
5190
5566
|
"Date.new(\"2024-03-05\").indian_mayotte?",
|
|
@@ -5193,7 +5569,8 @@ class Code
|
|
|
5193
5569
|
},
|
|
5194
5570
|
"indian_reunion?" => {
|
|
5195
5571
|
name: "indian_reunion?",
|
|
5196
|
-
description:
|
|
5572
|
+
description:
|
|
5573
|
+
"returns whether the current time zone is indian/reunion.",
|
|
5197
5574
|
examples: [
|
|
5198
5575
|
"Date.indian_reunion?",
|
|
5199
5576
|
"Date.new(\"2024-03-05\").indian_reunion?",
|
|
@@ -5283,7 +5660,8 @@ class Code
|
|
|
5283
5660
|
},
|
|
5284
5661
|
"mexico_bajanorte?" => {
|
|
5285
5662
|
name: "mexico_bajanorte?",
|
|
5286
|
-
description:
|
|
5663
|
+
description:
|
|
5664
|
+
"returns whether the current time zone is mexico/bajanorte.",
|
|
5287
5665
|
examples: [
|
|
5288
5666
|
"Date.mexico_bajanorte?",
|
|
5289
5667
|
"Date.new(\"2024-03-05\").mexico_bajanorte?",
|
|
@@ -5292,7 +5670,8 @@ class Code
|
|
|
5292
5670
|
},
|
|
5293
5671
|
"mexico_bajasur?" => {
|
|
5294
5672
|
name: "mexico_bajasur?",
|
|
5295
|
-
description:
|
|
5673
|
+
description:
|
|
5674
|
+
"returns whether the current time zone is mexico/bajasur.",
|
|
5296
5675
|
examples: [
|
|
5297
5676
|
"Date.mexico_bajasur?",
|
|
5298
5677
|
"Date.new(\"2024-03-05\").mexico_bajasur?",
|
|
@@ -5301,7 +5680,8 @@ class Code
|
|
|
5301
5680
|
},
|
|
5302
5681
|
"mexico_general?" => {
|
|
5303
5682
|
name: "mexico_general?",
|
|
5304
|
-
description:
|
|
5683
|
+
description:
|
|
5684
|
+
"returns whether the current time zone is mexico/general.",
|
|
5305
5685
|
examples: [
|
|
5306
5686
|
"Date.mexico_general?",
|
|
5307
5687
|
"Date.new(\"2024-03-05\").mexico_general?",
|
|
@@ -5364,7 +5744,8 @@ class Code
|
|
|
5364
5744
|
},
|
|
5365
5745
|
"pacific_auckland?" => {
|
|
5366
5746
|
name: "pacific_auckland?",
|
|
5367
|
-
description:
|
|
5747
|
+
description:
|
|
5748
|
+
"returns whether the current time zone is pacific/auckland.",
|
|
5368
5749
|
examples: [
|
|
5369
5750
|
"Date.pacific_auckland?",
|
|
5370
5751
|
"Date.new(\"2024-03-05\").pacific_auckland?",
|
|
@@ -5373,7 +5754,8 @@ class Code
|
|
|
5373
5754
|
},
|
|
5374
5755
|
"pacific_bougainville?" => {
|
|
5375
5756
|
name: "pacific_bougainville?",
|
|
5376
|
-
description:
|
|
5757
|
+
description:
|
|
5758
|
+
"returns whether the current time zone is pacific/bougainville.",
|
|
5377
5759
|
examples: [
|
|
5378
5760
|
"Date.pacific_bougainville?",
|
|
5379
5761
|
"Date.new(\"2024-03-05\").pacific_bougainville?",
|
|
@@ -5382,7 +5764,8 @@ class Code
|
|
|
5382
5764
|
},
|
|
5383
5765
|
"pacific_chatham?" => {
|
|
5384
5766
|
name: "pacific_chatham?",
|
|
5385
|
-
description:
|
|
5767
|
+
description:
|
|
5768
|
+
"returns whether the current time zone is pacific/chatham.",
|
|
5386
5769
|
examples: [
|
|
5387
5770
|
"Date.pacific_chatham?",
|
|
5388
5771
|
"Date.new(\"2024-03-05\").pacific_chatham?",
|
|
@@ -5391,7 +5774,8 @@ class Code
|
|
|
5391
5774
|
},
|
|
5392
5775
|
"pacific_chuuk?" => {
|
|
5393
5776
|
name: "pacific_chuuk?",
|
|
5394
|
-
description:
|
|
5777
|
+
description:
|
|
5778
|
+
"returns whether the current time zone is pacific/chuuk.",
|
|
5395
5779
|
examples: [
|
|
5396
5780
|
"Date.pacific_chuuk?",
|
|
5397
5781
|
"Date.new(\"2024-03-05\").pacific_chuuk?",
|
|
@@ -5400,7 +5784,8 @@ class Code
|
|
|
5400
5784
|
},
|
|
5401
5785
|
"pacific_easter?" => {
|
|
5402
5786
|
name: "pacific_easter?",
|
|
5403
|
-
description:
|
|
5787
|
+
description:
|
|
5788
|
+
"returns whether the current time zone is pacific/easter.",
|
|
5404
5789
|
examples: [
|
|
5405
5790
|
"Date.pacific_easter?",
|
|
5406
5791
|
"Date.new(\"2024-03-05\").pacific_easter?",
|
|
@@ -5409,7 +5794,8 @@ class Code
|
|
|
5409
5794
|
},
|
|
5410
5795
|
"pacific_efate?" => {
|
|
5411
5796
|
name: "pacific_efate?",
|
|
5412
|
-
description:
|
|
5797
|
+
description:
|
|
5798
|
+
"returns whether the current time zone is pacific/efate.",
|
|
5413
5799
|
examples: [
|
|
5414
5800
|
"Date.pacific_efate?",
|
|
5415
5801
|
"Date.new(\"2024-03-05\").pacific_efate?",
|
|
@@ -5418,7 +5804,8 @@ class Code
|
|
|
5418
5804
|
},
|
|
5419
5805
|
"pacific_enderbury?" => {
|
|
5420
5806
|
name: "pacific_enderbury?",
|
|
5421
|
-
description:
|
|
5807
|
+
description:
|
|
5808
|
+
"returns whether the current time zone is pacific/enderbury.",
|
|
5422
5809
|
examples: [
|
|
5423
5810
|
"Date.pacific_enderbury?",
|
|
5424
5811
|
"Date.new(\"2024-03-05\").pacific_enderbury?",
|
|
@@ -5427,7 +5814,8 @@ class Code
|
|
|
5427
5814
|
},
|
|
5428
5815
|
"pacific_fakaofo?" => {
|
|
5429
5816
|
name: "pacific_fakaofo?",
|
|
5430
|
-
description:
|
|
5817
|
+
description:
|
|
5818
|
+
"returns whether the current time zone is pacific/fakaofo.",
|
|
5431
5819
|
examples: [
|
|
5432
5820
|
"Date.pacific_fakaofo?",
|
|
5433
5821
|
"Date.new(\"2024-03-05\").pacific_fakaofo?",
|
|
@@ -5445,7 +5833,8 @@ class Code
|
|
|
5445
5833
|
},
|
|
5446
5834
|
"pacific_funafuti?" => {
|
|
5447
5835
|
name: "pacific_funafuti?",
|
|
5448
|
-
description:
|
|
5836
|
+
description:
|
|
5837
|
+
"returns whether the current time zone is pacific/funafuti.",
|
|
5449
5838
|
examples: [
|
|
5450
5839
|
"Date.pacific_funafuti?",
|
|
5451
5840
|
"Date.new(\"2024-03-05\").pacific_funafuti?",
|
|
@@ -5454,7 +5843,8 @@ class Code
|
|
|
5454
5843
|
},
|
|
5455
5844
|
"pacific_galapagos?" => {
|
|
5456
5845
|
name: "pacific_galapagos?",
|
|
5457
|
-
description:
|
|
5846
|
+
description:
|
|
5847
|
+
"returns whether the current time zone is pacific/galapagos.",
|
|
5458
5848
|
examples: [
|
|
5459
5849
|
"Date.pacific_galapagos?",
|
|
5460
5850
|
"Date.new(\"2024-03-05\").pacific_galapagos?",
|
|
@@ -5463,7 +5853,8 @@ class Code
|
|
|
5463
5853
|
},
|
|
5464
5854
|
"pacific_gambier?" => {
|
|
5465
5855
|
name: "pacific_gambier?",
|
|
5466
|
-
description:
|
|
5856
|
+
description:
|
|
5857
|
+
"returns whether the current time zone is pacific/gambier.",
|
|
5467
5858
|
examples: [
|
|
5468
5859
|
"Date.pacific_gambier?",
|
|
5469
5860
|
"Date.new(\"2024-03-05\").pacific_gambier?",
|
|
@@ -5472,7 +5863,8 @@ class Code
|
|
|
5472
5863
|
},
|
|
5473
5864
|
"pacific_guadalcanal?" => {
|
|
5474
5865
|
name: "pacific_guadalcanal?",
|
|
5475
|
-
description:
|
|
5866
|
+
description:
|
|
5867
|
+
"returns whether the current time zone is pacific/guadalcanal.",
|
|
5476
5868
|
examples: [
|
|
5477
5869
|
"Date.pacific_guadalcanal?",
|
|
5478
5870
|
"Date.new(\"2024-03-05\").pacific_guadalcanal?",
|
|
@@ -5490,7 +5882,8 @@ class Code
|
|
|
5490
5882
|
},
|
|
5491
5883
|
"pacific_honolulu?" => {
|
|
5492
5884
|
name: "pacific_honolulu?",
|
|
5493
|
-
description:
|
|
5885
|
+
description:
|
|
5886
|
+
"returns whether the current time zone is pacific/honolulu.",
|
|
5494
5887
|
examples: [
|
|
5495
5888
|
"Date.pacific_honolulu?",
|
|
5496
5889
|
"Date.new(\"2024-03-05\").pacific_honolulu?",
|
|
@@ -5499,7 +5892,8 @@ class Code
|
|
|
5499
5892
|
},
|
|
5500
5893
|
"pacific_johnston?" => {
|
|
5501
5894
|
name: "pacific_johnston?",
|
|
5502
|
-
description:
|
|
5895
|
+
description:
|
|
5896
|
+
"returns whether the current time zone is pacific/johnston.",
|
|
5503
5897
|
examples: [
|
|
5504
5898
|
"Date.pacific_johnston?",
|
|
5505
5899
|
"Date.new(\"2024-03-05\").pacific_johnston?",
|
|
@@ -5508,7 +5902,8 @@ class Code
|
|
|
5508
5902
|
},
|
|
5509
5903
|
"pacific_kanton?" => {
|
|
5510
5904
|
name: "pacific_kanton?",
|
|
5511
|
-
description:
|
|
5905
|
+
description:
|
|
5906
|
+
"returns whether the current time zone is pacific/kanton.",
|
|
5512
5907
|
examples: [
|
|
5513
5908
|
"Date.pacific_kanton?",
|
|
5514
5909
|
"Date.new(\"2024-03-05\").pacific_kanton?",
|
|
@@ -5517,7 +5912,8 @@ class Code
|
|
|
5517
5912
|
},
|
|
5518
5913
|
"pacific_kiritimati?" => {
|
|
5519
5914
|
name: "pacific_kiritimati?",
|
|
5520
|
-
description:
|
|
5915
|
+
description:
|
|
5916
|
+
"returns whether the current time zone is pacific/kiritimati.",
|
|
5521
5917
|
examples: [
|
|
5522
5918
|
"Date.pacific_kiritimati?",
|
|
5523
5919
|
"Date.new(\"2024-03-05\").pacific_kiritimati?",
|
|
@@ -5526,7 +5922,8 @@ class Code
|
|
|
5526
5922
|
},
|
|
5527
5923
|
"pacific_kosrae?" => {
|
|
5528
5924
|
name: "pacific_kosrae?",
|
|
5529
|
-
description:
|
|
5925
|
+
description:
|
|
5926
|
+
"returns whether the current time zone is pacific/kosrae.",
|
|
5530
5927
|
examples: [
|
|
5531
5928
|
"Date.pacific_kosrae?",
|
|
5532
5929
|
"Date.new(\"2024-03-05\").pacific_kosrae?",
|
|
@@ -5535,7 +5932,8 @@ class Code
|
|
|
5535
5932
|
},
|
|
5536
5933
|
"pacific_kwajalein?" => {
|
|
5537
5934
|
name: "pacific_kwajalein?",
|
|
5538
|
-
description:
|
|
5935
|
+
description:
|
|
5936
|
+
"returns whether the current time zone is pacific/kwajalein.",
|
|
5539
5937
|
examples: [
|
|
5540
5938
|
"Date.pacific_kwajalein?",
|
|
5541
5939
|
"Date.new(\"2024-03-05\").pacific_kwajalein?",
|
|
@@ -5544,7 +5942,8 @@ class Code
|
|
|
5544
5942
|
},
|
|
5545
5943
|
"pacific_majuro?" => {
|
|
5546
5944
|
name: "pacific_majuro?",
|
|
5547
|
-
description:
|
|
5945
|
+
description:
|
|
5946
|
+
"returns whether the current time zone is pacific/majuro.",
|
|
5548
5947
|
examples: [
|
|
5549
5948
|
"Date.pacific_majuro?",
|
|
5550
5949
|
"Date.new(\"2024-03-05\").pacific_majuro?",
|
|
@@ -5553,7 +5952,8 @@ class Code
|
|
|
5553
5952
|
},
|
|
5554
5953
|
"pacific_marquesas?" => {
|
|
5555
5954
|
name: "pacific_marquesas?",
|
|
5556
|
-
description:
|
|
5955
|
+
description:
|
|
5956
|
+
"returns whether the current time zone is pacific/marquesas.",
|
|
5557
5957
|
examples: [
|
|
5558
5958
|
"Date.pacific_marquesas?",
|
|
5559
5959
|
"Date.new(\"2024-03-05\").pacific_marquesas?",
|
|
@@ -5562,7 +5962,8 @@ class Code
|
|
|
5562
5962
|
},
|
|
5563
5963
|
"pacific_midway?" => {
|
|
5564
5964
|
name: "pacific_midway?",
|
|
5565
|
-
description:
|
|
5965
|
+
description:
|
|
5966
|
+
"returns whether the current time zone is pacific/midway.",
|
|
5566
5967
|
examples: [
|
|
5567
5968
|
"Date.pacific_midway?",
|
|
5568
5969
|
"Date.new(\"2024-03-05\").pacific_midway?",
|
|
@@ -5571,7 +5972,8 @@ class Code
|
|
|
5571
5972
|
},
|
|
5572
5973
|
"pacific_nauru?" => {
|
|
5573
5974
|
name: "pacific_nauru?",
|
|
5574
|
-
description:
|
|
5975
|
+
description:
|
|
5976
|
+
"returns whether the current time zone is pacific/nauru.",
|
|
5575
5977
|
examples: [
|
|
5576
5978
|
"Date.pacific_nauru?",
|
|
5577
5979
|
"Date.new(\"2024-03-05\").pacific_nauru?",
|
|
@@ -5589,7 +5991,8 @@ class Code
|
|
|
5589
5991
|
},
|
|
5590
5992
|
"pacific_norfolk?" => {
|
|
5591
5993
|
name: "pacific_norfolk?",
|
|
5592
|
-
description:
|
|
5994
|
+
description:
|
|
5995
|
+
"returns whether the current time zone is pacific/norfolk.",
|
|
5593
5996
|
examples: [
|
|
5594
5997
|
"Date.pacific_norfolk?",
|
|
5595
5998
|
"Date.new(\"2024-03-05\").pacific_norfolk?",
|
|
@@ -5598,7 +6001,8 @@ class Code
|
|
|
5598
6001
|
},
|
|
5599
6002
|
"pacific_noumea?" => {
|
|
5600
6003
|
name: "pacific_noumea?",
|
|
5601
|
-
description:
|
|
6004
|
+
description:
|
|
6005
|
+
"returns whether the current time zone is pacific/noumea.",
|
|
5602
6006
|
examples: [
|
|
5603
6007
|
"Date.pacific_noumea?",
|
|
5604
6008
|
"Date.new(\"2024-03-05\").pacific_noumea?",
|
|
@@ -5607,7 +6011,8 @@ class Code
|
|
|
5607
6011
|
},
|
|
5608
6012
|
"pacific_pago_pago?" => {
|
|
5609
6013
|
name: "pacific_pago_pago?",
|
|
5610
|
-
description:
|
|
6014
|
+
description:
|
|
6015
|
+
"returns whether the current time zone is pacific/pago_pago.",
|
|
5611
6016
|
examples: [
|
|
5612
6017
|
"Date.pacific_pago_pago?",
|
|
5613
6018
|
"Date.new(\"2024-03-05\").pacific_pago_pago?",
|
|
@@ -5616,7 +6021,8 @@ class Code
|
|
|
5616
6021
|
},
|
|
5617
6022
|
"pacific_palau?" => {
|
|
5618
6023
|
name: "pacific_palau?",
|
|
5619
|
-
description:
|
|
6024
|
+
description:
|
|
6025
|
+
"returns whether the current time zone is pacific/palau.",
|
|
5620
6026
|
examples: [
|
|
5621
6027
|
"Date.pacific_palau?",
|
|
5622
6028
|
"Date.new(\"2024-03-05\").pacific_palau?",
|
|
@@ -5625,7 +6031,8 @@ class Code
|
|
|
5625
6031
|
},
|
|
5626
6032
|
"pacific_pitcairn?" => {
|
|
5627
6033
|
name: "pacific_pitcairn?",
|
|
5628
|
-
description:
|
|
6034
|
+
description:
|
|
6035
|
+
"returns whether the current time zone is pacific/pitcairn.",
|
|
5629
6036
|
examples: [
|
|
5630
6037
|
"Date.pacific_pitcairn?",
|
|
5631
6038
|
"Date.new(\"2024-03-05\").pacific_pitcairn?",
|
|
@@ -5634,7 +6041,8 @@ class Code
|
|
|
5634
6041
|
},
|
|
5635
6042
|
"pacific_pohnpei?" => {
|
|
5636
6043
|
name: "pacific_pohnpei?",
|
|
5637
|
-
description:
|
|
6044
|
+
description:
|
|
6045
|
+
"returns whether the current time zone is pacific/pohnpei.",
|
|
5638
6046
|
examples: [
|
|
5639
6047
|
"Date.pacific_pohnpei?",
|
|
5640
6048
|
"Date.new(\"2024-03-05\").pacific_pohnpei?",
|
|
@@ -5643,7 +6051,8 @@ class Code
|
|
|
5643
6051
|
},
|
|
5644
6052
|
"pacific_ponape?" => {
|
|
5645
6053
|
name: "pacific_ponape?",
|
|
5646
|
-
description:
|
|
6054
|
+
description:
|
|
6055
|
+
"returns whether the current time zone is pacific/ponape.",
|
|
5647
6056
|
examples: [
|
|
5648
6057
|
"Date.pacific_ponape?",
|
|
5649
6058
|
"Date.new(\"2024-03-05\").pacific_ponape?",
|
|
@@ -5652,7 +6061,8 @@ class Code
|
|
|
5652
6061
|
},
|
|
5653
6062
|
"pacific_port_moresby?" => {
|
|
5654
6063
|
name: "pacific_port_moresby?",
|
|
5655
|
-
description:
|
|
6064
|
+
description:
|
|
6065
|
+
"returns whether the current time zone is pacific/port_moresby.",
|
|
5656
6066
|
examples: [
|
|
5657
6067
|
"Date.pacific_port_moresby?",
|
|
5658
6068
|
"Date.new(\"2024-03-05\").pacific_port_moresby?",
|
|
@@ -5661,7 +6071,8 @@ class Code
|
|
|
5661
6071
|
},
|
|
5662
6072
|
"pacific_rarotonga?" => {
|
|
5663
6073
|
name: "pacific_rarotonga?",
|
|
5664
|
-
description:
|
|
6074
|
+
description:
|
|
6075
|
+
"returns whether the current time zone is pacific/rarotonga.",
|
|
5665
6076
|
examples: [
|
|
5666
6077
|
"Date.pacific_rarotonga?",
|
|
5667
6078
|
"Date.new(\"2024-03-05\").pacific_rarotonga?",
|
|
@@ -5670,7 +6081,8 @@ class Code
|
|
|
5670
6081
|
},
|
|
5671
6082
|
"pacific_saipan?" => {
|
|
5672
6083
|
name: "pacific_saipan?",
|
|
5673
|
-
description:
|
|
6084
|
+
description:
|
|
6085
|
+
"returns whether the current time zone is pacific/saipan.",
|
|
5674
6086
|
examples: [
|
|
5675
6087
|
"Date.pacific_saipan?",
|
|
5676
6088
|
"Date.new(\"2024-03-05\").pacific_saipan?",
|
|
@@ -5679,7 +6091,8 @@ class Code
|
|
|
5679
6091
|
},
|
|
5680
6092
|
"pacific_samoa?" => {
|
|
5681
6093
|
name: "pacific_samoa?",
|
|
5682
|
-
description:
|
|
6094
|
+
description:
|
|
6095
|
+
"returns whether the current time zone is pacific/samoa.",
|
|
5683
6096
|
examples: [
|
|
5684
6097
|
"Date.pacific_samoa?",
|
|
5685
6098
|
"Date.new(\"2024-03-05\").pacific_samoa?",
|
|
@@ -5688,7 +6101,8 @@ class Code
|
|
|
5688
6101
|
},
|
|
5689
6102
|
"pacific_tahiti?" => {
|
|
5690
6103
|
name: "pacific_tahiti?",
|
|
5691
|
-
description:
|
|
6104
|
+
description:
|
|
6105
|
+
"returns whether the current time zone is pacific/tahiti.",
|
|
5692
6106
|
examples: [
|
|
5693
6107
|
"Date.pacific_tahiti?",
|
|
5694
6108
|
"Date.new(\"2024-03-05\").pacific_tahiti?",
|
|
@@ -5697,7 +6111,8 @@ class Code
|
|
|
5697
6111
|
},
|
|
5698
6112
|
"pacific_tarawa?" => {
|
|
5699
6113
|
name: "pacific_tarawa?",
|
|
5700
|
-
description:
|
|
6114
|
+
description:
|
|
6115
|
+
"returns whether the current time zone is pacific/tarawa.",
|
|
5701
6116
|
examples: [
|
|
5702
6117
|
"Date.pacific_tarawa?",
|
|
5703
6118
|
"Date.new(\"2024-03-05\").pacific_tarawa?",
|
|
@@ -5706,7 +6121,8 @@ class Code
|
|
|
5706
6121
|
},
|
|
5707
6122
|
"pacific_tongatapu?" => {
|
|
5708
6123
|
name: "pacific_tongatapu?",
|
|
5709
|
-
description:
|
|
6124
|
+
description:
|
|
6125
|
+
"returns whether the current time zone is pacific/tongatapu.",
|
|
5710
6126
|
examples: [
|
|
5711
6127
|
"Date.pacific_tongatapu?",
|
|
5712
6128
|
"Date.new(\"2024-03-05\").pacific_tongatapu?",
|
|
@@ -5733,7 +6149,8 @@ class Code
|
|
|
5733
6149
|
},
|
|
5734
6150
|
"pacific_wallis?" => {
|
|
5735
6151
|
name: "pacific_wallis?",
|
|
5736
|
-
description:
|
|
6152
|
+
description:
|
|
6153
|
+
"returns whether the current time zone is pacific/wallis.",
|
|
5737
6154
|
examples: [
|
|
5738
6155
|
"Date.pacific_wallis?",
|
|
5739
6156
|
"Date.new(\"2024-03-05\").pacific_wallis?",
|
|
@@ -5850,7 +6267,8 @@ class Code
|
|
|
5850
6267
|
},
|
|
5851
6268
|
"us_east_minus_indiana?" => {
|
|
5852
6269
|
name: "us_east_minus_indiana?",
|
|
5853
|
-
description:
|
|
6270
|
+
description:
|
|
6271
|
+
"returns whether the current time zone is us/east-indiana.",
|
|
5854
6272
|
examples: [
|
|
5855
6273
|
"Date.us_east_minus_indiana?",
|
|
5856
6274
|
"Date.new(\"2024-03-05\").us_east_minus_indiana?",
|
|
@@ -5877,7 +6295,8 @@ class Code
|
|
|
5877
6295
|
},
|
|
5878
6296
|
"us_indiana_minus_starke?" => {
|
|
5879
6297
|
name: "us_indiana_minus_starke?",
|
|
5880
|
-
description:
|
|
6298
|
+
description:
|
|
6299
|
+
"returns whether the current time zone is us/indiana-starke.",
|
|
5881
6300
|
examples: [
|
|
5882
6301
|
"Date.us_indiana_minus_starke?",
|
|
5883
6302
|
"Date.new(\"2024-03-05\").us_indiana_minus_starke?",
|
|
@@ -5994,7 +6413,8 @@ class Code
|
|
|
5994
6413
|
},
|
|
5995
6414
|
"nanosecond" => {
|
|
5996
6415
|
name: "nanosecond",
|
|
5997
|
-
description:
|
|
6416
|
+
description:
|
|
6417
|
+
"returns zero because dates have no nanosecond component.",
|
|
5998
6418
|
examples: [
|
|
5999
6419
|
"Date.new(\"2024-03-05\").nanosecond",
|
|
6000
6420
|
"Date.new.nanosecond",
|
|
@@ -6003,7 +6423,8 @@ class Code
|
|
|
6003
6423
|
},
|
|
6004
6424
|
"nanoseconds" => {
|
|
6005
6425
|
name: "nanoseconds",
|
|
6006
|
-
description:
|
|
6426
|
+
description:
|
|
6427
|
+
"returns zero because dates have no nanosecond component.",
|
|
6007
6428
|
examples: [
|
|
6008
6429
|
"Date.new(\"2024-03-05\").nanoseconds",
|
|
6009
6430
|
"Date.new.nanoseconds",
|
|
@@ -6012,7 +6433,8 @@ class Code
|
|
|
6012
6433
|
},
|
|
6013
6434
|
"millisecond" => {
|
|
6014
6435
|
name: "millisecond",
|
|
6015
|
-
description:
|
|
6436
|
+
description:
|
|
6437
|
+
"returns zero because dates have no millisecond component.",
|
|
6016
6438
|
examples: [
|
|
6017
6439
|
"Date.new(\"2024-03-05\").millisecond",
|
|
6018
6440
|
"Date.new.millisecond",
|
|
@@ -6021,7 +6443,8 @@ class Code
|
|
|
6021
6443
|
},
|
|
6022
6444
|
"milliseconds" => {
|
|
6023
6445
|
name: "milliseconds",
|
|
6024
|
-
description:
|
|
6446
|
+
description:
|
|
6447
|
+
"returns zero because dates have no millisecond component.",
|
|
6025
6448
|
examples: [
|
|
6026
6449
|
"Date.new(\"2024-03-05\").milliseconds",
|
|
6027
6450
|
"Date.new.milliseconds",
|
|
@@ -6031,11 +6454,7 @@ class Code
|
|
|
6031
6454
|
"utc" => {
|
|
6032
6455
|
name: "utc",
|
|
6033
6456
|
description: "returns the date unchanged.",
|
|
6034
|
-
examples: [
|
|
6035
|
-
"Date.new(\"2024-03-05\").utc",
|
|
6036
|
-
"Date.new.utc",
|
|
6037
|
-
"Date.utc"
|
|
6038
|
-
]
|
|
6457
|
+
examples: ["Date.new(\"2024-03-05\").utc", "Date.new.utc", "Date.utc"]
|
|
6039
6458
|
},
|
|
6040
6459
|
"local" => {
|
|
6041
6460
|
name: "local",
|
|
@@ -11394,19 +11813,27 @@ class Code
|
|
|
11394
11813
|
end
|
|
11395
11814
|
|
|
11396
11815
|
def code_america_argentina_buenos_aires?
|
|
11397
|
-
Boolean.new(
|
|
11816
|
+
Boolean.new(
|
|
11817
|
+
current_time_zone_names.include?("America/Argentina/Buenos_Aires")
|
|
11818
|
+
)
|
|
11398
11819
|
end
|
|
11399
11820
|
|
|
11400
11821
|
def code_america_argentina_catamarca?
|
|
11401
|
-
Boolean.new(
|
|
11822
|
+
Boolean.new(
|
|
11823
|
+
current_time_zone_names.include?("America/Argentina/Catamarca")
|
|
11824
|
+
)
|
|
11402
11825
|
end
|
|
11403
11826
|
|
|
11404
11827
|
def code_america_argentina_comodrivadavia?
|
|
11405
|
-
Boolean.new(
|
|
11828
|
+
Boolean.new(
|
|
11829
|
+
current_time_zone_names.include?("America/Argentina/ComodRivadavia")
|
|
11830
|
+
)
|
|
11406
11831
|
end
|
|
11407
11832
|
|
|
11408
11833
|
def code_america_argentina_cordoba?
|
|
11409
|
-
Boolean.new(
|
|
11834
|
+
Boolean.new(
|
|
11835
|
+
current_time_zone_names.include?("America/Argentina/Cordoba")
|
|
11836
|
+
)
|
|
11410
11837
|
end
|
|
11411
11838
|
|
|
11412
11839
|
def code_america_argentina_jujuy?
|
|
@@ -11414,15 +11841,21 @@ class Code
|
|
|
11414
11841
|
end
|
|
11415
11842
|
|
|
11416
11843
|
def code_america_argentina_la_rioja?
|
|
11417
|
-
Boolean.new(
|
|
11844
|
+
Boolean.new(
|
|
11845
|
+
current_time_zone_names.include?("America/Argentina/La_Rioja")
|
|
11846
|
+
)
|
|
11418
11847
|
end
|
|
11419
11848
|
|
|
11420
11849
|
def code_america_argentina_mendoza?
|
|
11421
|
-
Boolean.new(
|
|
11850
|
+
Boolean.new(
|
|
11851
|
+
current_time_zone_names.include?("America/Argentina/Mendoza")
|
|
11852
|
+
)
|
|
11422
11853
|
end
|
|
11423
11854
|
|
|
11424
11855
|
def code_america_argentina_rio_gallegos?
|
|
11425
|
-
Boolean.new(
|
|
11856
|
+
Boolean.new(
|
|
11857
|
+
current_time_zone_names.include?("America/Argentina/Rio_Gallegos")
|
|
11858
|
+
)
|
|
11426
11859
|
end
|
|
11427
11860
|
|
|
11428
11861
|
def code_america_argentina_salta?
|
|
@@ -11430,19 +11863,27 @@ class Code
|
|
|
11430
11863
|
end
|
|
11431
11864
|
|
|
11432
11865
|
def code_america_argentina_san_juan?
|
|
11433
|
-
Boolean.new(
|
|
11866
|
+
Boolean.new(
|
|
11867
|
+
current_time_zone_names.include?("America/Argentina/San_Juan")
|
|
11868
|
+
)
|
|
11434
11869
|
end
|
|
11435
11870
|
|
|
11436
11871
|
def code_america_argentina_san_luis?
|
|
11437
|
-
Boolean.new(
|
|
11872
|
+
Boolean.new(
|
|
11873
|
+
current_time_zone_names.include?("America/Argentina/San_Luis")
|
|
11874
|
+
)
|
|
11438
11875
|
end
|
|
11439
11876
|
|
|
11440
11877
|
def code_america_argentina_tucuman?
|
|
11441
|
-
Boolean.new(
|
|
11878
|
+
Boolean.new(
|
|
11879
|
+
current_time_zone_names.include?("America/Argentina/Tucuman")
|
|
11880
|
+
)
|
|
11442
11881
|
end
|
|
11443
11882
|
|
|
11444
11883
|
def code_america_argentina_ushuaia?
|
|
11445
|
-
Boolean.new(
|
|
11884
|
+
Boolean.new(
|
|
11885
|
+
current_time_zone_names.include?("America/Argentina/Ushuaia")
|
|
11886
|
+
)
|
|
11446
11887
|
end
|
|
11447
11888
|
|
|
11448
11889
|
def code_america_aruba?
|
|
@@ -11670,7 +12111,9 @@ class Code
|
|
|
11670
12111
|
end
|
|
11671
12112
|
|
|
11672
12113
|
def code_america_indiana_indianapolis?
|
|
11673
|
-
Boolean.new(
|
|
12114
|
+
Boolean.new(
|
|
12115
|
+
current_time_zone_names.include?("America/Indiana/Indianapolis")
|
|
12116
|
+
)
|
|
11674
12117
|
end
|
|
11675
12118
|
|
|
11676
12119
|
def code_america_indiana_knox?
|
|
@@ -11682,11 +12125,15 @@ class Code
|
|
|
11682
12125
|
end
|
|
11683
12126
|
|
|
11684
12127
|
def code_america_indiana_petersburg?
|
|
11685
|
-
Boolean.new(
|
|
12128
|
+
Boolean.new(
|
|
12129
|
+
current_time_zone_names.include?("America/Indiana/Petersburg")
|
|
12130
|
+
)
|
|
11686
12131
|
end
|
|
11687
12132
|
|
|
11688
12133
|
def code_america_indiana_tell_city?
|
|
11689
|
-
Boolean.new(
|
|
12134
|
+
Boolean.new(
|
|
12135
|
+
current_time_zone_names.include?("America/Indiana/Tell_City")
|
|
12136
|
+
)
|
|
11690
12137
|
end
|
|
11691
12138
|
|
|
11692
12139
|
def code_america_indiana_vevay?
|
|
@@ -11694,7 +12141,9 @@ class Code
|
|
|
11694
12141
|
end
|
|
11695
12142
|
|
|
11696
12143
|
def code_america_indiana_vincennes?
|
|
11697
|
-
Boolean.new(
|
|
12144
|
+
Boolean.new(
|
|
12145
|
+
current_time_zone_names.include?("America/Indiana/Vincennes")
|
|
12146
|
+
)
|
|
11698
12147
|
end
|
|
11699
12148
|
|
|
11700
12149
|
def code_america_indiana_winamac?
|
|
@@ -11726,11 +12175,15 @@ class Code
|
|
|
11726
12175
|
end
|
|
11727
12176
|
|
|
11728
12177
|
def code_america_kentucky_louisville?
|
|
11729
|
-
Boolean.new(
|
|
12178
|
+
Boolean.new(
|
|
12179
|
+
current_time_zone_names.include?("America/Kentucky/Louisville")
|
|
12180
|
+
)
|
|
11730
12181
|
end
|
|
11731
12182
|
|
|
11732
12183
|
def code_america_kentucky_monticello?
|
|
11733
|
-
Boolean.new(
|
|
12184
|
+
Boolean.new(
|
|
12185
|
+
current_time_zone_names.include?("America/Kentucky/Monticello")
|
|
12186
|
+
)
|
|
11734
12187
|
end
|
|
11735
12188
|
|
|
11736
12189
|
def code_america_knox_in?
|
|
@@ -11854,15 +12307,21 @@ class Code
|
|
|
11854
12307
|
end
|
|
11855
12308
|
|
|
11856
12309
|
def code_america_north_dakota_beulah?
|
|
11857
|
-
Boolean.new(
|
|
12310
|
+
Boolean.new(
|
|
12311
|
+
current_time_zone_names.include?("America/North_Dakota/Beulah")
|
|
12312
|
+
)
|
|
11858
12313
|
end
|
|
11859
12314
|
|
|
11860
12315
|
def code_america_north_dakota_center?
|
|
11861
|
-
Boolean.new(
|
|
12316
|
+
Boolean.new(
|
|
12317
|
+
current_time_zone_names.include?("America/North_Dakota/Center")
|
|
12318
|
+
)
|
|
11862
12319
|
end
|
|
11863
12320
|
|
|
11864
12321
|
def code_america_north_dakota_new_salem?
|
|
11865
|
-
Boolean.new(
|
|
12322
|
+
Boolean.new(
|
|
12323
|
+
current_time_zone_names.include?("America/North_Dakota/New_Salem")
|
|
12324
|
+
)
|
|
11866
12325
|
end
|
|
11867
12326
|
|
|
11868
12327
|
def code_america_nuuk?
|
|
@@ -12058,7 +12517,9 @@ class Code
|
|
|
12058
12517
|
end
|
|
12059
12518
|
|
|
12060
12519
|
def code_antarctica_dumontdurville?
|
|
12061
|
-
Boolean.new(
|
|
12520
|
+
Boolean.new(
|
|
12521
|
+
current_time_zone_names.include?("Antarctica/DumontDUrville")
|
|
12522
|
+
)
|
|
12062
12523
|
end
|
|
12063
12524
|
|
|
12064
12525
|
def code_antarctica_macquarie?
|