1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*******************************************************************************
* Copyright 2025 Stefan Majewsky <majewsky@gmx.net>
* SPDX-License-Identifier: Apache-2.0
* Refer to the file "LICENSE" for details.
*******************************************************************************/
// Package options provides additional functions for type option.Option
// that cannot be expressed as methods on the Option type itself.
package options
import (
"cmp"
. "github.com/majewsky/gg/option"
)
// NOTE: Keep functions sorted by name.
// FromPointer converts a *T into an Option[T].
func FromPointer[T any](value *T) Option[T] {
if value == nil {
return None[T]()
} else {
return Some(*value)
}
}
// IsNoneOrZero returns whether o is either empty, or contains a zero value.
func IsNoneOrZero[T comparable](o Option[T]) bool {
return o.IsNoneOr(func(value T) bool {
var zero T
return zero == value
})
}
// Map applies the given function to the value contained in o, if there is one.
func Map[T, U any](o Option[T], mapping func(T) U) Option[U] {
if t, ok := o.Unpack(); ok {
return Some(mapping(t))
} else {
return None[U]()
}
}
// Max returns the largest of its input values, while disregarding None values.
// If there are no Some values, None is returned.
func Max[T cmp.Ordered](inputs ...Option[T]) Option[T] {
var (
result T
isSome = false
)
for _, i := range inputs {
value, ok := i.Unpack()
if ok && (!isSome || result < value) {
result = value
isSome = true
}
}
if isSome {
return Some(result)
} else {
return None[T]()
}
}
// Min returns the smallest of its input values, while disregarding None values.
// If there are no Some values, None is returned.
func Min[T cmp.Ordered](inputs ...Option[T]) Option[T] {
var (
result T
isSome = false
)
for _, i := range inputs {
value, ok := i.Unpack()
if ok && (!isSome || result > value) {
result = value
isSome = true
}
}
if isSome {
return Some(result)
} else {
return None[T]()
}
}
|