• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

ChangesH A D21-May-2008304

lib/H05-Apr-20133

Makefile.PLH A D21-May-2008580

MANIFESTH A D21-May-2008105

META.ymlH A D21-May-2008343

READMEH A D21-May-20081,000

t/H11-Apr-20135

README

1Scope-Guard version 0.03
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.cuj.com/documents/s=8000/cujcexp1812alexandr/
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-2007 by chocolateboy <chocolate.boy@email.com>
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