blob: 5ab668b15508b329061b7360e8ff49a8b6eceba9 (
plain)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
Change 645 on 2001/09/07 by <gbarr@pobox.com> (Graham Barr)
Some platforms require the main executable to export symbols
needed by modules. In 5.7.2 and prior releases of perl
Perl_cxinc was not exported so we need to duplicate its
functionality
Change 644 on 2001/09/07 by <gbarr@pobox.com> (Graham Barr)
Generate a typemap for NV for all perl version up to and
including 5.006
Change 643 on 2001/09/07 by <gbarr@pobox.com> (Graham Barr)
Document problems known with specific versions of perl
Change 642 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
Release 1.05
Change 641 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
Fix shuffle() to compile with threaded perl
Change 640 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
Release 1.04
Change 639 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
Fix context type (caused a core on Tru64)
Call pp_rand via *(PL_ppaddr[OP_RAND])
Change 638 on 2001/09/05 by <gbarr@pobox.com> (Graham Barr)
Documentation updates
Change 637 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
Release 1.03
Change 636 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
More changes to help merging with core dist
Change 635 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
Added List::Util::shuffle() similar to that described in
the perl FAQ except it returns a shuffled list instead of
modifying an array passed by reference
Change 632 on 2001/09/03 by <gbarr@pobox.com> (Graham Barr)
Handle tied variables passed for the number to dualvar()
Preserve number type (IV/UV/NV) in dualvar()
Change 631 on 2001/08/31 by <gbarr@pobox.com> (Graham Barr)
Handle eval{} inside of the code blocks for first and reduce
Change 629 on 2001/08/22 by <gbarr@pobox.com> (Graham Barr)
perl5.004 does not like exit from within a BEGIN, it core dumps
Change 628 on 2001/08/22 by <gbarr@pobox.com> (Graham Barr)
Fix stack problem in first() and reduce()
Align with core dist
Change 483 on 2000/04/10 by <gbarr@pobox.com> (Graham Barr)
Release 1.02
Change 482 on 2000/04/10 by <gbarr@pobox.com> (Graham Barr)
Check for SvMAGICAL on argument for reftype and blessed
Change 366 on 2000/03/03 by <gbarr@pobox.com> (Graham Barr)
Release 1.01
Change 365 on 2000/03/03 by <gbarr@pobox.com> (Graham Barr)
- Added auto-detection for a compiler and install the perl version
if not found
- Better perl implemenation of reftype, should be thread-safe now
Change 364 on 2000/03/03 by <gbarr@pobox.com> (Graham Barr)
- Added some examples of simple subs that have been requested
but not added
- Updated copyright dates
Change 344 on 1999/11/10 by <gbarr@pobox.com> (Graham Barr)
- Better testcase for reftype
Change 343 on 1999/11/10 by <gbarr@pobox.com> (Graham Barr)
- Modules are now called List::Util & Scalar::Util
- Supports non-XS install
- perl version of reftype now returns "REF" when it should
Change 311 on 1999/06/01 by <gbarr@pobox.com> (Graham Barr)
Updated README
Change 275 on 1999/03/22 by <gbarr@pobox.com> (Graham Barr)
Removed forall as it is very broken
Change 274 on 1999/03/22 by <gbarr@pobox.com> (Graham Barr)
Added List::Util::forall
Change 273 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
Added weaken and isweak to Ref::Util
Change 272 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
Add new .pm files to repository
Change 271 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
- Split into three packages Ref::Util, List::Util and Scalar::DualVar
- readonly and clock were removed in favor of other modules
Change 270 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
Rename package
Change 269 on 1999/03/21 by <gbarr@pobox.com> (Graham Barr)
- Added reftype
- improved reduce by not doing a sub call
- reduce now uses $a and $b
- now compiles with 5.005_5x
Change 178 on 1998/07/26 by <gbarr@pobox.com> (Graham Barr)
Modified XS code so it will compile with 5.004 and 5.005
Change 115 on 1998/02/21 by <gbarr@pobox.com> (Graham Barr)
Fri Feb 20 1998 Graham Barr <gbarr@pobox.com>
t/min.t, t/max.t
- Change sor to do a numerical sort
Fri Dec 19 1997 Graham Barr <gbarr@pobox.com>
- Added readonly()
Wed Nov 19 1997 Graham Barr <gbarr@pobox.com>
- Initial release
|