DOKK / manpages / debian 12 / libgedcom-perl / Gedcom::Family.3pm.en
Gedcom::Family(3pm) User Contributed Perl Documentation Gedcom::Family(3pm)

Gedcom::Family - a module to manipulate GEDCOM families

Version 1.22 - 15th November 2019

  use Gedcom::Family;
  my @rel = $f->husband;
  my @rel = $f->wife;
  my @rel = $f->parents;
  my $nch = $f->number_of_children;
  my @rel = $f->children;
  my @rel = $f->boys;
  my @rel = $f->girls;
  $f->add_husband($i);
  $f->add_wife($i);
  $f->add_child($i);

A selection of subroutines to handle families in a GEDCOM file.

Derived from Gedcom::Record.

None.

None yet.

  my @rel = $f->husband;
  my @rel = $f->wife;
  my @rel = $f->parents;
  my @rel = $f->children;
  my @rel = $f->boys;
  my @rel = $f->girls;

Return a list of individuals from family $f.

Each function, even those with a singular name such as husband(), returns a list of individuals holding that relation in $f.

  my $nch = $f->number_of_children;

Return the number of children in the family, as specified or from counting.

  $f->add_husband($i);
  $f->add_wife($i);
  $f->add_child($i);

Add the specified individual to the family in the appropriate position.

These functions also take care of the references from the individual back to the family, and are to be preferred to the low level addition functions which do not do this.

2022-10-16 perl v5.34.0