.\" -*- mode: troff; coding: utf-8 -*-
.\" Automatically generated by Pod::Man 5.0102 (Pod::Simple 3.45)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>.
.ie n \{\
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "Class::Inspector::Functions 3"
.TH Class::Inspector::Functions 3 2024-09-01 "perl v5.40.0" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH NAME
Class::Inspector::Functions \- Get information about a class and its structure
.SH VERSION
.IX Header "VERSION"
version 1.36
.SH SYNOPSIS
.IX Header "SYNOPSIS"
.Vb 3
\& use Class::Inspector::Functions;
\& # Class::Inspector provides a non\-polluting,
\& # method based interface!
\&
\& # Is a class installed and/or loaded
\& installed( \*(AqFoo::Class\*(Aq );
\& loaded( \*(AqFoo::Class\*(Aq );
\&
\& # Filename related information
\& filename( \*(AqFoo::Class\*(Aq );
\& resolved_filename( \*(AqFoo::Class\*(Aq );
\&
\& # Get subroutine related information
\& functions( \*(AqFoo::Class\*(Aq );
\& function_refs( \*(AqFoo::Class\*(Aq );
\& function_exists( \*(AqFoo::Class\*(Aq, \*(Aqbar\*(Aq );
\& methods( \*(AqFoo::Class\*(Aq, \*(Aqfull\*(Aq, \*(Aqpublic\*(Aq );
\&
\& # Find all loaded subclasses or something
\& subclasses( \*(AqFoo::Class\*(Aq );
.Ve
.SH DESCRIPTION
.IX Header "DESCRIPTION"
Class::Inspector::Functions is a function based interface of
Class::Inspector. For a thorough documentation of the available
functions, please check the manual for the main module.
.SS Exports
.IX Subsection "Exports"
The following functions are exported by default.
.PP
.Vb 6
\& installed
\& loaded
\& filename
\& functions
\& methods
\& subclasses
.Ve
.PP
The following functions are exported only by request.
.PP
.Vb 4
\& resolved_filename
\& loaded_filename
\& function_refs
\& function_exists
.Ve
.PP
All the functions may be imported using the \f(CW\*(C`:ALL\*(C'\fR tag.
.SH "SEE ALSO"
.IX Header "SEE ALSO"
, Class::Handle, Class::Inspector
.SH AUTHOR
.IX Header "AUTHOR"
Original author: Adam Kennedy
.PP
Current maintainer: Graham Ollis
.PP
Contributors:
.PP
Tom Wyant
.PP
Steffen Müller
.PP
Kivanc Yazan (KYZN)
.SH "COPYRIGHT AND LICENSE"
.IX Header "COPYRIGHT AND LICENSE"
This software is copyright (c) 2002\-2019 by Adam Kennedy.
.PP
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.