summary refs log tree commit diff stats
path: root/lib/pure/times.nim
Commit message (Expand)AuthorAgeFilesLines
* Add std/monotimes which implements monotonic timestamps (#11712)Andreas Rumpf2019-07-151-9/+16
|\
| * [other] Minor optimization in timesOscar Nihlgård2019-07-121-9/+12
| * [feature] Added std/monotimesOscar Nihlgård2019-07-121-0/+4
* | times: use posix constant instead of import (#11692)Jacek Sieka2019-07-131-9/+4
|/
* there is only one style -- my styleAraq2019-07-101-0/+8
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-12/+12
* ABI fixes for OSX/BSD; fixes #6860 (#11666)Andreas Rumpf2019-07-061-1/+1
* Documentation improvements to the times module (#11639)Graeme Cross2019-07-031-27/+27
* fixes #7167 (#11300)Andreas Rumpf2019-05-221-1/+1
* getDateStr and getClockStr takes a default parameter (#11108)liuxiaodong2019-05-211-4/+6
* make epochTime available in DLLs; refs #6855Araq2019-05-101-50/+49
* Allow for locale-based parsing/formatting of dates (#11170)Matt Haggard2019-05-081-91/+57
* Add missing `deprecated` pragma (#11100) [ci skip]Oscar Nihlgård2019-04-241-1/+1
* Fix header inconsistencies in documentation (#11071)Zed2019-04-231-6/+7
* Strformat symbol binding (#10927)Arne Döring2019-04-051-0/+8
* newruntime: progressAraq2019-04-011-1/+1
* make 'nim doc times.nim' work on old versions of OSX againAndreas Rumpf2019-03-041-1/+1
* times.nim: Fix docs for duration conversion procs [ci skip] (#10770)ee72019-03-021-5/+5
* times.nim: avoid some stdlib dependenciesAraq2019-02-201-5/+5
* Replace the duration conversion procs with new improved ones (#10710)Oscar Nihlgård2019-02-191-56/+156
* better docs: timesnarimiran2019-02-131-27/+93
* New implementation of times.between (#10523)Oscar Nihlgård2019-02-061-81/+94
* times.nim: make it compile on older OSX versionsAndreas Rumpf2019-02-041-1/+14
* Deprecate the times.countX procs (#10522)Oscar Nihlgård2019-02-011-4/+16
* times: use clock_gettime() for epochTime() (#10499)alaviss2019-01-301-12/+4
* Revert export of times.CTime; add std/time_t instead. (#10319)Oscar Nihlgård2019-01-161-7/+4
* Expose CTime (#10301)genotrance2019-01-141-3/+3
* Times cosmetic changes (#10237)Oscar Nihlgård2019-01-101-329/+374
* refs #10121 (#10124)Timothee Cour2018-12-301-1/+2
* Don't use parseutils.parseInt in the times module (#10028)Oscar Nihlgård2018-12-221-39/+67
* times.nim: Minor formatting change in the example codeAraq2018-12-041-1/+1
* times: use clock_gettime for cpuTime with POSIX (#9793)Emery Hemingway2018-11-261-3/+13
* updated tests to be executedArne Döring2018-11-231-1/+6
* Times module cosmetic changes (#9770)Oscar Nihlgård2018-11-201-33/+22
* removes deprecated T/P typesAraq2018-11-161-3/+0
* times - remove unneeded negative sign when parsing formats z and zz (#9631)pgkos2018-11-061-3/+3
* Fix times 32-bit issueOscar Nihlgård2018-10-191-2/+4
* times.nim: minor code cleanupAraq2018-08-311-3/+2
* Don't assume utcOffset == +0 for old dates on Windows (#8744)Oscar Nihlgård2018-08-231-0/+11
* Cleanup ttimes (#8714)Oscar Nihlgård2018-08-221-7/+3
* times.Timezone changes (#8527)Oscar Nihlgård2018-08-171-63/+139
* Haiku support for Nim (#8542)alaviss2018-08-141-1/+1
* Use enum string values in times.nim (#8413)Oscar Nihlgård2018-07-231-16/+19
* fix #8273 times format regression, and fix inconsistent ordering in 1 format ...Timothee Cour2018-07-161-29/+29
* New implementations of times.parse & times.format (#8094)Oscar Nihlgård2018-07-091-554/+822
* Unexport times.stringifyUnit (#8168)Oscar Nihlgård2018-07-011-8/+6
* Change inconsistent paramaters in times.nim (#8091)Oscar Nihlgård2018-06-231-28/+19
* [change] Replace mutators with their more generic versionsMichael Voronin2018-06-061-37/+22
* [add] Add fraction of seconds to parse/format utilsMichael Voronin2018-05-311-60/+75
* [add] add between function to calculate TI between two datetimesMichael Voronin2018-05-311-0/+103
> 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065