The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Data::Object::Role

ABSTRACT

Data-Object Role Declaration

SYNOPSIS

  package Persona;

  use Data::Object 'Role';

  with 'Relatable';

  has handle => (
    is => 'ro',
    isa => 'Str'
  );

  1;

DESCRIPTION

Data::Object::Role modifies the consuming package making it a role.