The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Object::Config::Signatures

ABSTRACT

Data-Object Signatures Configuration

SYNOPSIS

  use Data::Object::Config::Signatures;

  fun hello (Str $name) {
    return "Hello $name, how are you?";
  }

DESCRIPTION

Data::Object::Config::Signatures is a subclass of Type::Tiny::Signatures providing method and function signatures supporting all the type constraints provided by Data::Object::Config::Type.

FUNCTIONS

This package implements the following functions.

settings

  my $settings = settings();

The settings function returns the settings for Function::Parameters configuration.

func_settings

  my $func_settings = func_settings();

The func_settings function returns the fun-keyword configuration.

meth_settings

  my $meth_settings = meth_settings();

The meth_settings function returns the method-keyword configuration.

aftr_settings

  my $aftr_settings = aftr_settings();

The aftr_settings function returns the after-keyword configuration.

befr_settings

  my $befr_settings = befr_settings();

The befr_settings function returns the before-keyword configuration.

arnd_settings

  my $arnd_settings = arnd_settings();

The arnd_settings function returns the around-keyword configuration.