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

NAME

Jedi::Helpers::Scalar - Jedi Helpers for Scalar

VERSION

version 1.008

METHODS

import

Equivalent in your module to :

  use autobox SCALAR => Jedi::Helpers::Scalar

full_path

Add a trailing "/" to your path :

        "/env"->full_path # /env/

start_with

Check if a path start with the value in param :

        "/env/test"->start_with("/env") # true

without_base

Remove from the path, the base pass in params :

        "/env/test"->without_base("/env") # /test/
        "/env/test"->without_base("/env") # /test/

BUGS

Please report any bugs or feature requests on the bugtracker website https://github.com/celogeek/perl-jedi/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

celogeek <me@celogeek.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by celogeek <me@celogeek.com>.

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