GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Listify(3) User Contributed Perl Documentation Listify(3)

Scalar::Listify - produces an array(ref)? from a scalar value or array ref.

  use Scalar::Listify;

  $text_scalar = 'text';
  $aref_scalar = [ 1.. 5 ];

  print join ':', listify $text_scalar; # => text
  print join ':', listify $aref_scalar; # => 1:2:3:4:5

A lot of Perl code ends up with scalars having either a single scalar value or a reference to an array of scalar values. In order to handle the two conditions, one must check for what is in the scalar value before getting on with one's task. Ie:

  $text_scalar = 'text';
  $aref_scalar = [ 1.. 5 ];

  print ref($text_scalar) ? (join ':', @$text_scalar) : $text_scalar;

And this module is designed to address just that!

listify() - listify takes a scalar as an argument and returns the value of the scalar in a format useable in list contexts.

listify_aref() - returns [ listify (@_) ]

T. M. Brannon, <tbone@CPAN.org>

Copyright 1999-present by Terrence Brannon.

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

perl(1).
2014-02-07 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.