• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Scope/H19-Jul-2015-18431

t/H19-Jul-2015-351225

ChangesH A D19-Jul-2015771 2920

MANIFESTH A D19-Jul-2015203 1110

META.jsonH A D19-Jul-20151.2 KiB5453

META.ymlH A D19-Jul-2015725 2928

Makefile.PLH A D19-Jul-2015940 3530

READMEH A D19-Jul-2015975 2920

README

1Scope-Guard version 0.21
2========================
3
4This module provides a convenient way to perform cleanup or other forms of resource
5management at the end of a scope. It is particularly useful when dealing with exceptions:
6the Scope::Guard constructor takes a reference to a subroutine that is guaranteed to
7be called even if the thread of execution is aborted prematurely. This effectively allows
8lexically-scoped "promises" to be made that are automatically honoured by perl's garbage
9collector.
10
11For more information, see: http://www.drdobbs.com/cpp/184403758
12
13INSTALLATION
14
15To install this module, type the following:
16
17   perl Makefile.PL
18   make
19   make test
20   make install
21
22COPYRIGHT AND LICENCE
23
24Copyright (c) 2005-2015 by chocolateboy <chocolate@cpan.org>
25
26This library is free software; you can redistribute it and/or modify
27it under the same terms as Perl itself, either Perl version 5.8.6 or,
28at your option, any later version of Perl 5 you may have available.
29