| Data-RandomPerson documentation | Contained in the Data-RandomPerson distribution. |
Data::RandomPerson::Names::EnglishFemale - A list of female names
This document refers to version 0.4 of Data::RandomPerson::Names::EnglishFemale, released Sept 13th, 2005
use Data::RandomPerson::Names::EnglishFemale; my $n = Data::RandomPerson::Names::EnglishFemale->new(); print $n->get();
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.
Create the Data::RandomPerson::Names::EnglishFemale object.
Returns a random name from the list.
Returns the size of the list
Perl 5
None
None so far
None
None
Peter Hickman (peterhi@ntlworld.com)
Copyright (c) 2005, Peter Hickman. All rights reserved. This module is free software. It may be used, redistributed and/or modified under the same terms as Perl itself.
| Data-RandomPerson documentation | Contained in the Data-RandomPerson distribution. |
# $Id: EnglishFemale.pm,v 1.3 2005/05/22 17:02:28 peterhickman Exp $ package Data::RandomPerson::Names::EnglishFemale; 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/ aimee aleksandra alice alicia allison alyssa amy andrea angel angela ann anna anne annie ashley barbara beatrice beth betty brenda brooke candace cara caren carol caroline carolyn carrie cassandra catherine charlotte chrissy christen christina christine christy claire claudia courtney crystal cynthia dana danielle deanne deborah deirdre denise diane dianne dorothy eileen elena elizabeth emily erica erin frances gina giulietta heather helen jane janet janice jenna jennifer jessica joanna joyce julia juliana julie justine kara karen katharine katherine kathleen kathryn katrina kelly kerry kim kimberly kristen kristina kristine laura laurel lauren laurie leah linda lisa lori marcia margaret maria marie marina marisa martha mary maya melanie melissa michelle monica nancy natalie nicole nina pamela patricia rachel rebecca renee sandra sara sharon sheri shirley sonia stefanie stephanie susan suzanne sylvia tamara tara tatiana terri theresa tiffany tracy valerie veronica vicky vivian wendy / ); return $self; } 1; __END__