It is really just a meme. Don't use this module in your projects.
This package is a joke inspired by java.util.Optional class.
package main
import"github.com/igoracmelo/optional"funcmain() {
opt:=optional.Of(123)
opt.Equals(123) // trueopt.IsPresent() // trueopt.IsEmpty() // falseopt.IfPresent(func () { // func gets calledDoSomething() })
x:=optional.OfNullable(nil).OrElse(10) // x = 10
}