7 lines
75 B
Go
7 lines
75 B
Go
|
package optional
|
||
|
|
||
|
type Optional[T any] struct {
|
||
|
Present bool
|
||
|
Value T
|
||
|
}
|