utils

package
v2.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 20, 2025 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Empty = Initial{}

	SetLastName = F.Curry2(func(name string, s1 Initial) WithLastName {
		return WithLastName{
			Initial:  s1,
			LastName: name,
		}
	})

	SetGivenName = F.Curry2(func(name string, s1 WithLastName) WithGivenName {
		return WithGivenName{
			WithLastName: s1,
			GivenName:    name,
		}
	})
)

Functions

func Dec

func Dec(i int) int

func Double

func Double(value int) int

func Error

func Error() (int, error)

func GetFullName

func GetFullName(s WithGivenName) string

func Inc

func Inc(i int) int

func StringLen

func StringLen(value string) int

func Sum

func Sum(left, right int) int

func Triple

func Triple(value int) int

Types

type Initial

type Initial struct {
}

type WithGivenName

type WithGivenName struct {
	WithLastName
	GivenName string
}

type WithLastName

type WithLastName struct {
	Initial
	LastName string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL