NAME
App::Grok::Resource::Table - Grok resource for the Perl 6 Table Index
SYNOPSIS
use strict;
use warnings;
use App::Grok::Resource::Table qw<:ALL>;
# a list of all entries in the table
my @index = table_index();
# documentation for a table entry
my $pod = table_fetch('+');
# filename where the table entry was found
my $file = table_locate('+');
DESCRIPTION
This resource looks up entries in the Perl 6 Table Index (http://www.perlfoundation.org/perl6/index.cgi?perl_table_index.
METHODS
table_index
Takes no arguments. Lists all entry names in the table.
table_fetch
Takes an entry name as an argument. Returns the documentation for it.
table_locate
Takes an entry name as an argument. Returns the name of the file where it was found.