-
Notifications
You must be signed in to change notification settings - Fork 19
/
complex128.go
76 lines (64 loc) · 1.61 KB
/
complex128.go
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
// Code generated by 'go generate'
package optional
import (
"errors"
)
// Complex128 is an optional complex128.
type Complex128 struct {
value *complex128
}
// NewComplex128 creates an optional.Complex128 from a complex128.
func NewComplex128(v complex128) Complex128 {
return Complex128{&v}
}
// NewComplex128FromPtr creates an optional.Complex128 from a complex128 pointer.
func NewComplex128FromPtr(v *complex128) Complex128 {
if v == nil {
return Complex128{}
}
return NewComplex128(*v)
}
// Set sets the complex128 value.
func (c *Complex128) Set(v complex128) {
c.value = &v
}
// ToPtr returns a *complex128 of the value or nil if not present.
func (c Complex128) ToPtr() *complex128 {
if !c.Present() {
return nil
}
v := *c.value
return &v
}
// Get returns the complex128 value or an error if not present.
func (c Complex128) Get() (complex128, error) {
if !c.Present() {
var zero complex128
return zero, errors.New("value not present")
}
return *c.value, nil
}
// MustGet returns the complex128 value or panics if not present.
func (c Complex128) MustGet() complex128 {
if !c.Present() {
panic("value not present")
}
return *c.value
}
// Present returns whether or not the value is present.
func (c Complex128) Present() bool {
return c.value != nil
}
// OrElse returns the complex128 value or a default value if the value is not present.
func (c Complex128) OrElse(v complex128) complex128 {
if c.Present() {
return *c.value
}
return v
}
// If calls the function f with the value if the value is present.
func (c Complex128) If(fn func(complex128)) {
if c.Present() {
fn(*c.value)
}
}