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

Sub::Meta::Finder::Default - finder of default

SYNOPSIS

    use Sub::Meta::Creator;
    use Sub::Meta::Finder::Default

    my $creator = Sub::Meta::Creator->new(
        finders => [ \&Sub::Meta::Finder::Default::find_materials ],
    );

    sub hello {}

    my $meta = $creator->create(\&hello);
    # =>
    # Sub::Meta
    #   sub     \&hello,
    #   subname 'hello'

FUNCTIONS

find_materials

    sub find_materials() => Maybe[ Dict[sub => CodeRef] ]

LICENSE

Copyright (C) kfly8.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

kfly8 <kfly@cpan.org>