This repository was archived by the owner on Oct 25, 2023. It is now read-only.
forked from markphelps/optional
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplex128.go
More file actions
60 lines (50 loc) · 1.31 KB
/
complex128.go
File metadata and controls
60 lines (50 loc) · 1.31 KB
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
// Code generated by go generate
// This file was generated by robots at 2021-05-04 14:21:53.141535 +0000 UTC
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}
}
// Set sets the complex128 value.
func (c *Complex128) Set(v complex128) {
c.value = &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)
}
}