Package tmp implements an expiring optional-type with a time-out, for the Go programming language. In other programming languages, an optional-type might be known as: a option-type, or a maybe-type.
Go to file
Charles Iliya Krempeaux 653d6c1579 initial commits 2023-11-02 11:12:05 -07:00
LICENSE initial commits 2023-11-01 08:17:43 -07:00
README.md initial commits 2023-11-01 09:35:03 -07:00
temporal.go initial commits 2023-11-01 19:22:11 -07:00
temporal_filter_test.go initial commits 2023-11-01 19:22:11 -07:00
temporal_get_test.go initial commits 2023-11-02 08:28:37 -07:00
temporal_gostring_test.go initial commits 2023-11-01 19:22:11 -07:00
temporal_is_defunct_test.go initial commits 2023-11-01 19:22:11 -07:00
temporal_is_nothing_test.go initial commits 2023-11-01 19:22:11 -07:00
temporal_marshaljson.go initial commits 2023-11-01 18:36:14 -07:00
temporal_marshaljson_bool_test.go initial commits 2023-11-01 19:22:11 -07:00
temporal_marshaljson_int_test.go initial commits 2023-11-01 23:06:06 -07:00
temporal_marshaljson_string_test.go initial commits 2023-11-02 08:23:30 -07:00
temporal_unmarshaljson.go initial commits 2023-11-02 11:01:11 -07:00
temporal_unmarshaljson_bool_test.go initial commits 2023-11-02 11:03:42 -07:00
temporal_unmarshaljson_string_test.go initial commits 2023-11-02 11:12:05 -07:00

README.md

go-tmp

Package tmp implements an expiring optional-type with a time-out, for the Go programming language.

In other programming languages, an optional-type might be known as: a option-type, or a maybe-type.

Documention

Online documentation, which includes examples, can be found at: http://godoc.org/sourcecode.social/reiver/go-tmp

GoDoc

Import

To import package tmp use import code like the follownig:

import "sourcecode.social/reiver/go-tmp"

Installation

To install package tmp do the following:

GOPROXY=direct go get https://sourcecode.social/reiver/go-tmp

Author

Package tmp was written by Charles Iliya Krempeaux