forked from robinhouston/Want
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
109 lines (90 loc) · 2.83 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
-----------------------------------------------------------------------------
| Want v0.25 - Robin Houston, 2014-12-10
-----------------------------------------------------------------------------
For full documentation, see the POD included with the module.
Below is a brief extract of the documentation, to give you an
idea of what this module does. It requires Perl version 5.6 or
later.
NAME
Want - Implement the `want' command
SYNOPSIS
use Want;
sub foo :lvalue {
if (want(qw'LVALUE ASSIGN')) {
print "We have been assigned ", want('ASSIGN');
lnoreturn;
}
elsif (want('LIST')) {
rreturn (1, 2, 3);
}
elsif (want('BOOL')) {
rreturn 0;
}
elsif (want(qw'SCALAR !REF')) {
rreturn 23;
}
elsif (want('HASH')) {
rreturn { foo => 17, bar => 23 };
}
return
}
DESCRIPTION
This module generalises the mechanism of the wantarray
function, allowing a function to determine in some detail
how its return value is going to be immediately used.
...
EXAMPLES
use Carp 'croak';
use Want 'howmany';
sub numbers {
my $count = howmany();
croak("Can't make an infinite list") if !defined($count);
return (1..$count);
}
my ($one, $two, $three) = numbers();
use Want 'want';
sub pi () {
if (want('ARRAY')) {
return [3, 1, 4, 1, 5, 9];
}
elsif (want('LIST')) {
return (3, 1, 4, 1, 5, 9);
}
else {
return 3;
}
}
print pi->[2]; # prints 4
print ((pi)[3]); # prints 1
use Want;
use strict;
sub backstr :lvalue {
if (want(qw'LVALUE ASSIGN')) {
my ($a) = want('ASSIGN');
$_[0] = reverse $a;
lnoreturn;
}
elsif (want('RVALUE')) {
rreturn scalar reverse $_[0];
}
else {
carp("Not in ASSIGN context");
}
return
}
print "foo -> ", backstr("foo"), "\n"; # foo -> oof
backstr(my $robin) = "nibor";
print "\$robin is now $robin\n"; # $robin is now robin
AUTHOR
Robin Houston, <robin@cpan.org>
Thanks to Damian Conway for encouragement and good
suggestions, and to Father Chrysostomos and Matthew
Horsfall for patches.
SEE ALSO
o the wantarray entry in the perlfunc manpage
o Perl6 RFC 21, by Damian Conway.
http://dev.perl.org/rfc/21.html
COPYRIGHT
Copyright (c) 2001-2012, Robin Houston. All Rights Reserved.
This module is free software. It may be used, redistributed
and/or modified under the same terms as Perl itself.