The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Devel::INC::Sorted - Keep your hooks in the begining of @INC

SYNOPSIS

        use Devel::INC::Sorted qw(inc_add_floating);

        inc_add_floating( \&my_inc_hook );
        unshift @INC, \&other_hook;

        use lib 'blah';

        push @INC, 'foo';

        warn $INC[0]; # this is still \&my_inc_hook
        warn $INC[3]; # but \&other_hook was moved down to here

DESCRIPTION

This module keeps @INC sorted much like Tie::Array::Sorted.

The default comparator partitions the members into floating and non floating, allowing you to easily keep certain hooks in the begining of @INC.

The sort used is a stable one, to make sure that the order of @INC for unsorted items remains unchanged.

EXPORTS

All exports are optional

inc_add_floating

Add entries to @INC and call inc_float_entry on them.

inc_float_entry

Mark the arguments as floating (in the internal refhash).

inc_unfloat_entry

Remove the items from the hash.

untie_inc

Untie @INC, leaving all it's current elements in place. Further modifications to @INC will not cause resorting to happen.

VERSION CONTROL

This module is maintained using Darcs. You can get the latest version from http://nothingmuch.woobling.org/code, and use darcs send to commit changes.

AUTHOR

Yuval Kogman <nothingmuch@woobling.org>

COPYRIGHT

        Copyright (c) 2008 Yuval Kogman. All rights reserved
        This program is free software; you can redistribute
        it and/or modify it under the same terms as Perl itself.