| grok documentation | view source | Contained in the grok distribution. |
App::Grok::Resource::Functions - S29/S32 functions resource for grok
use strict;
use warnings;
use App::Grok::Resource::Functions qw<:ALL>;
# a list of all functions
my @index = func_index();
# documentation for a specific functions
my $pod = func_fetch('split');
# the file where the function was found
my $file = func_locate('split');
This resource reads Synopses 29 and 32, and allows you to look up the functions therein.
func_indexTakes no arguments. Returns a list of all known function names.
func_fetchTakes the name of a function as an argument. Returns the documentation for that function.
func_locateTakes the same argument as func_fetch|/func_fetch. Returns the path to
the Synopsis file where the given function was found.
| grok documentation | view source | Contained in the grok distribution. |