MCPcopy Create free account
hub / github.com/Pallinder/go-randomdata / FullName

Function FullName

random_data.go:146–148  ·  view source on GitHub ↗

FullName returns a combination of FirstName LastName randomized, gender decides the gender of the name

(gender int)

Source from the content-addressed store, hash-verified

144
145// FullName returns a combination of FirstName LastName randomized, gender decides the gender of the name
146func FullName(gender int) string {
147 return FirstName(gender) + " " + LastName()
148}
149
150// Email returns a random email
151func Email() string {

Callers 2

TestFullNameFunction · 0.85
ExampleRandomdataFunction · 0.85

Calls 2

FirstNameFunction · 0.85
LastNameFunction · 0.85

Tested by 2

TestFullNameFunction · 0.68
ExampleRandomdataFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…