Package nul implements a nullable optional-type, for the Go programming language. In other programming languages, an optional-type might be know as: a option-type, or a maybe-type.
Go to file
Charles Iliya Krempeaux a70040250e nil receiver 2023-11-06 09:24:20 -08:00
LICENSE initial commits 2023-09-24 07:53:12 +09:00
README.md correction 2023-11-02 08:21:26 -07:00
go.mod improvements 2023-09-27 09:48:15 +09:00
go.sum improvements 2023-09-27 09:48:15 +09:00
nullable.go initial commits 2023-09-24 07:55:56 +09:00
nullable_filter_test.go correction 2023-11-02 08:21:26 -07:00
nullable_get_test.go correction 2023-11-02 08:21:26 -07:00
nullable_gostring_test.go initial commits 2023-09-24 07:55:56 +09:00
nullable_marshaljson.go correction 2023-11-01 18:20:44 -07:00
nullable_marshaljson_bool_test.go initial commits 2023-09-24 09:43:29 +09:00
nullable_marshaljson_int_test.go initial commits 2023-09-24 09:56:21 +09:00
nullable_marshaljson_string_test.go initial commits 2023-09-24 09:47:54 +09:00
nullable_unmarshaljson.go nil receiver 2023-11-06 09:24:20 -08:00
nullable_unmarshaljson_bool_test.go initial commits 2023-09-24 17:48:58 +09:00
nullable_unmarshaljson_int_test.go initial commits 2023-09-24 17:48:58 +09:00
nullable_unmarshaljson_string_test.go initial commits 2023-09-24 17:48:58 +09:00
nullable_whennothing_test.go initial commits 2023-09-24 09:26:07 +09:00
nullable_whennull_test.go initial commits 2023-09-24 09:28:48 +09:00
nullable_whensomething_test.go initial commits 2023-09-24 09:34:34 +09:00

README.md

go-nul

Package nul implements a nullable optional-type, 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-nul

GoDoc

Examples

Here is an example nullable optional-type that can hold a string:

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

//

var op nul.Nullable[string] // the default value is nothing.

// ...

if nul.Nothing[string]() == op {
	fmt.Println("nothing")
}

// ...

op = nul.Null[string]()

// ...

if nul.Null[string]() == op {
	fmt.Println("null")
}

// ...

op = nul.Something("Hello world! 👾")

// ...

switch op {
case op.Nothing[string]():
	//@TODO
case op.Null[string]():
	//@TODO
case op.Something("apple"):
	//@TODO
case op.Something("banana"):
	//@TODO
case op.Something("cherry"):
	//@TODO
default:
	//@TODO
}

// ...

value, found := op.Get()
if found {
	fmt.Println("VALUE:", value)
} else {
	fmt.Println("either nothing or null")
}

Import

To import package nul use import code like the follownig:

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

Installation

To install package nul do the following:

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

Author

Package nul was written by Charles Iliya Krempeaux