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