Logo

0x5a.live

for different kinds of informations and explorations.

GitHub - relvacode/iso8601: A fast ISO8601 date parser for Go

A fast ISO8601 date parser for Go. Contribute to relvacode/iso8601 development by creating an account on GitHub.

Visit SiteGitHub - relvacode/iso8601: A fast ISO8601 date parser for Go

GitHub - relvacode/iso8601: A fast ISO8601 date parser for Go

A fast ISO8601 date parser for Go. Contribute to relvacode/iso8601 development by creating an account on GitHub.

Powered by 0x5a.live ๐Ÿ’—

A fast ISO8601 date parser for Go

GoDoc Build Status Go Report Card

go get github.com/relvacode/iso8601

The built-in RFC3333 time layout in Go is too restrictive to support any ISO8601 date-time.

This library parses any ISO8601 date into a native Go time object without regular expressions.

Usage

package main

import "github.com/relvacode/iso8601"

// iso8601.Time can be used as a drop-in replacement for time.Time with JSON responses
type ExternalAPIResponse struct {
	Timestamp *iso8601.Time
}


func main() {
	// iso8601.ParseString can also be called directly
	t, err := iso8601.ParseString("2020-01-02T16:20:00")
}

Benchmark

goos: linux
goarch: amd64
pkg: github.com/relvacode/iso8601
cpu: AMD Ryzen 7 7840U w/ Radeon 780M Graphics      
BenchmarkParse-16               35880919                30.89 ns/op            0 B/op          0 allocs/op

GoLang Resources

are all listed below.

Resources

listed to get explored on!!

Made with โค๏ธ

to provide different kinds of informations and resources.