-
-
09 Jan 2022 00:22:48 UTC
- Distribution: Tie-StringArray
- Module version: 1.103
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers (66 / 0 / 2)
- Kwalitee
Bus factor: 1- 12.60% Coverage
- License: artistic_2
- Perl: v5.12.0
- Activity
24 month- Tools
- Download (8.85KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Tie::StringArray - use a tied string as an array of chars
SYNOPSIS
use Tie::StringArray; tie my @array, 'Tie::StringArray', qw(137 88 54);
DESCRIPTION
The
Tie::StringArray
module is a demonstration from Mastering Perl. It stores integers between 0 and 255 as a single character in a string that acts like an array throughtie
. Behind thetie
, the array is a single string, so there's only one scalar to store.I don't think this is particularly useful for anything real.
- new
TO DO
SEE ALSO
SOURCE AVAILABILITY
This source is in Github:
http://github.com/briandfoy/tie-stringarray/
AUTHOR
brian d foy,
<bdfoy@cpan.org>
COPYRIGHT AND LICENSE
Copyright © 2005-2022, brian d foy <bdfoy@cpan.org>. All rights reserved.
You may redistribute this under the terms of the Artistic License 2.0.
Module Install Instructions
To install Tie::StringArray, copy and paste the appropriate command in to your terminal.
cpanm Tie::StringArray
perl -MCPAN -e shell install Tie::StringArray
For more information on module installation, please visit the detailed CPAN module installation guide.