Kups v0.1.0 Kups.Person.Female View Source

Functions for generating fake data related to a female person.

Link to this section Summary

Functions

Generates first name of a female person

Generates a full name of a female person

Generates last name of a female person

Link to this section Functions

Generates first name of a female person.

Example

iex> Kups.Person.Female.first_name
  "Maria"
Link to this function full_name(with_middle_initial \\ false) View Source

Generates a full name of a female person.

Accepts a boolean parameter. Defaults to false.

Examples

  iex(1)> Kups.Person.Male.full_name(true)
  "Maria R. Dela Cruz"
  iex(2)> Kups.Person.Male.full_name
  "Maria Dela Cruz"

Generates last name of a female person.

Example

iex> Kups.Person.Male.last_name
  "Dela Cruz"