8000 GitHub - sundbp/zig-datetime: A date and time module for Zig
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sundbp/zig-datetime

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zig Datetime

Build Status codecov

A datetime module for Zig with an api similar to python's Arrow.

NOTE: This does not implement DST.

const allocator = std.heap.page_allocator;
var date = try Date.create(2019, 12, 25);
var next_year = date.shiftDays(7);
assert(next_year.year == 2020);
assert(next_year.month == 1);
assert(next_year.day == 1);

// In UTC
var now = Datetime.now();
var now_str = try now.formatHttp(allocator);
defer allocator.free(now_str);
std.debug.warn("The time is now: {}\n", .{now_str});
// The time is now: Fri, 20 Dec 2019 22:03:02 UTC

About

A date and time module for Zig

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Zig 100.0%
0