Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



namespace::autoclean(3)              User Contributed Perl Documentation             namespace::autoclean(3)



NAME
       namespace::autoclean - Keep imports out of your namespace

SYNOPSIS
           package Foo;
           use namespace::autoclean;
           use Some::Package qw/imported_function/;

           sub bar { imported_function('stuff') }

           # later on:
           Foo->bar;               # works
           Foo->imported_function; # will fail. imported_function got cleaned after compilation

DESCRIPTION
       When you import a function into a Perl package, it will naturally also be available as a method.

       The "namespace::autoclean" pragma will remove all imported symbols at the end of the current
       package's compile cycle. Functions called in the package itself will still be bound by their name,
       but they won't show up as methods on your class or instances.

       This module is very similar to namespace::clean, except it will clean all imported functions, no
       matter if you imported them before or after you "use"d the pragma. It will also not touch anything
       that looks like a method, according to "Class::MOP::Class::get_method_list".

       If you're writing an exporter and you want to clean up after yourself (and your peers), you can use
       the "-cleanee" switch to specify what package to clean:

         package My::MooseX::namespace::autoclean;
         use strict;

         use namespace::autoclean (); # no cleanup, just load

         sub import {
             namespace::autoclean->import(
               -cleanee => scalar(caller),
             );
         }

PARAMETERS
   -also => [ ITEM | REGEX | SUB, .. ]
   -also => ITEM
   -also => REGEX
   -also => SUB
       Sometimes you don't want to clean imports only, but also helper functions you're using in your
       methods. The "-also" switch can be used to declare a list of functions that should be removed
       additional to any imports:

           use namespace::autoclean -also => ['some_function', 'another_function'];

       If only one function needs to be additionally cleaned the "-also" switch also accepts a plain string:

           use namespace::autoclean -also => 'some_function';

       In some situations, you may wish for a more powerful cleaning solution.

       The "-also" switch can take a Regex or a CodeRef to match against local function names to clean.

           use namespace::autoclean -also => qr/^_/

           use namespace::autoclean -also => sub { $_ =~ m{^_} };

           use namespace::autoclean -also => [qr/^_/ , qr/^hidden_/ ];

           use namespace::autoclean -also => [sub { $_ =~ m/^_/ or $_ =~ m/^hidden/ }, sub { uc($_) == $_ } ];

SEE ALSO
       namespace::clean

       Class::MOP

       B::Hooks::EndOfScope

AUTHOR
       Florian Ragwitz <rafl@debian.org>

COPYRIGHT AND LICENSE
       This software is copyright (c) 2011 by Florian Ragwitz.

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



perl v5.12.5                                     2011-08-24                          namespace::autoclean(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.