utils

package
v1.0.116 Latest Latest
Warning

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

Go to latest
Published: Feb 6, 2024 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 added in v1.0.6

func Dec(i int) int

func Double

func Double(value int) int

func Error

func Error() (int, error)

func GetFullName added in v1.0.107

func GetFullName(s WithGivenName) string

func Inc added in v1.0.6

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 added in v1.0.107

type Initial struct {
}

type WithGivenName added in v1.0.107

type WithGivenName struct {
	WithLastName
	GivenName string
}

type WithLastName added in v1.0.107

type WithLastName struct {
	Initial
	LastName string
}

Jump to

Keyboard shortcuts

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