Data::RandomPerson::Names::SpanishFemale - A list of female names


Data-RandomPerson documentation Contained in the Data-RandomPerson distribution.

Index


Code Index:

NAME

Top

Data::RandomPerson::Names::SpanishFemale - A list of female names

VERSION

Top

This document refers to version 0.4 of Data::RandomPerson::Names::SpanishFemale, released Sept 13th, 2005

SYNOPSIS

Top

  use Data::RandomPerson::Names::SpanishFemale;

  my $n = Data::RandomPerson::Names::SpanishFemale->new();

  print $n->get();

DESCRIPTION

Top

Overview

Returns a random element from a list of female names culled from Chris Pound's language machines page at http://www.ruf.rice.edu/~pound/#scripts.

Constructors and initialization

new( )

Create the Data::RandomPerson::Names::SpanishFemale object.

Class and object methods

get( )

Returns a random name from the list.

size( )

Returns the size of the list

ENVIRONMENT

Top

Perl 5

DIAGNOSTICS

Top

None

BUGS

Top

None so far

FILES

Top

None

SEE ALSO

Top

None

AUTHOR

Top

Peter Hickman (peterhi@ntlworld.com)

COPYRIGHT

Top


Data-RandomPerson documentation Contained in the Data-RandomPerson distribution.

# $Id: SpanishFemale.pm,v 1.3 2005/05/22 17:02:30 peterhickman Exp $

package Data::RandomPerson::Names::SpanishFemale;

use strict;
use warnings;

use base 'Data::RandomPerson::Names';

use Data::RandomPerson::Choice;

sub new {
    my ($class) = @_;

    my $self = bless {}, $class;

	$self->{choice} = Data::RandomPerson::Choice->new();

	$self->{choice}->add_list( qw/
agueda
aldonza
ana
angelina
antonia
barbola
bartolomeba
beatriz
belit
bernardina
berta
blanca
bona
catalina
clara
clarencia
columba
constanza
cristina
domenga
eldonza
elena
elo
elvira
enderquina
ermengarda
ermesinda
estefania
eva
fafila
fatima
felipa
florinda
francisca
fronilde
gelvira
gotina
gracia
gundisalba
guntroda
ildaria
ines
isabel
isabelica
isabella
jimena
juana
leonor
lucia
luisa
lupa
madelena
mafalda
maneula
mansuara
margarita
maria
mariana
marina
marinella
mayor
mencia
paterna
placia
sancha
scemena
serena
taresa
tegrida
teoda
teresa
toda
urraca
velasquita
victoria
violante
yolande
ysabel
			  / );

    return $self;
}

1;

__END__