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, } }) )
View Source
var Upper = strings.ToUpper
Functions ¶
func GetFullName ¶ added in v1.0.107
func GetFullName(s WithGivenName) string
Types ¶
type WithGivenName ¶ added in v1.0.107
type WithGivenName struct { WithLastName GivenName string }
type WithLastName ¶ added in v1.0.107
Click to show internal directories.
Click to hide internal directories.