This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Continue what #4494 started; introduce uid and gid formats.
[perl5.git] / lib / overload.pm
CommitLineData
4633a7c4
LW
1package overload;
2
a6006777 3sub nil {}
4
4633a7c4
LW
5sub OVERLOAD {
6 $package = shift;
7 my %arg = @_;
a6006777 8 my ($sub, $fb);
9 $ {$package . "::OVERLOAD"}{dummy}++; # Register with magic by touching.
10 *{$package . "::()"} = \&nil; # Make it findable via fetchmethod.
4633a7c4 11 for (keys %arg) {
a6006777 12 if ($_ eq 'fallback') {
13 $fb = $arg{$_};
14 } else {
15 $sub = $arg{$_};
16 if (not ref $sub and $sub !~ /::/) {
44a8e56a 17 $ {$package . "::(" . $_} = $sub;
18 $sub = \&nil;
a6006777 19 }
20 #print STDERR "Setting `$ {'package'}::\cO$_' to \\&`$sub'.\n";
21 *{$package . "::(" . $_} = \&{ $sub };
22 }
4633a7c4 23 }
a6006777 24 ${$package . "::()"} = $fb; # Make it findable too (fallback only).
4633a7c4
LW
25}
26
27sub import {
28 $package = (caller())[0];
29 # *{$package . "::OVERLOAD"} = \&OVERLOAD;
30 shift;
31 $package->overload::OVERLOAD(@_);
32}
33
34sub unimport {
35 $package = (caller())[0];
a6006777 36 ${$package . "::OVERLOAD"}{dummy}++; # Upgrade the table
4633a7c4
LW
37 shift;
38 for (@_) {
a6006777 39 if ($_ eq 'fallback') {
40 undef $ {$package . "::()"};
41 } else {
42 delete $ {$package . "::"}{"(" . $_};
43 }
4633a7c4
LW
44 }
45}
46
47sub Overloaded {
a6006777 48 my $package = shift;
49 $package = ref $package if ref $package;
50 $package->can('()');
4633a7c4
LW
51}
52
44a8e56a 53sub ov_method {
54 my $globref = shift;
55 return undef unless $globref;
56 my $sub = \&{*$globref};
57 return $sub if $sub ne \&nil;
58 return shift->can($ {*$globref});
59}
60
4633a7c4 61sub OverloadedStringify {
a6006777 62 my $package = shift;
63 $package = ref $package if ref $package;
44a8e56a 64 #$package->can('(""')
ee239bfe
IZ
65 ov_method mycan($package, '(""'), $package
66 or ov_method mycan($package, '(0+'), $package
67 or ov_method mycan($package, '(bool'), $package
68 or ov_method mycan($package, '(nomethod'), $package;
4633a7c4
LW
69}
70
71sub Method {
a6006777 72 my $package = shift;
73 $package = ref $package if ref $package;
44a8e56a 74 #my $meth = $package->can('(' . shift);
75 ov_method mycan($package, '(' . shift), $package;
76 #return $meth if $meth ne \&nil;
77 #return $ {*{$meth}};
4633a7c4
LW
78}
79
80sub AddrRef {
a6006777 81 my $package = ref $_[0];
82 return "$_[0]" unless $package;
83 bless $_[0], overload::Fake; # Non-overloaded package
4633a7c4
LW
84 my $str = "$_[0]";
85 bless $_[0], $package; # Back
a6006777 86 $package . substr $str, index $str, '=';
4633a7c4
LW
87}
88
89sub StrVal {
f6b3007c 90 (OverloadedStringify($_[0]) or ref($_[0]) eq 'Regexp') ?
a6006777 91 (AddrRef(shift)) :
4633a7c4
LW
92 "$_[0]";
93}
94
44a8e56a 95sub mycan { # Real can would leave stubs.
96 my ($package, $meth) = @_;
97 return \*{$package . "::$meth"} if defined &{$package . "::$meth"};
98 my $p;
99 foreach $p (@{$package . "::ISA"}) {
100 my $out = mycan($p, $meth);
101 return $out if $out;
102 }
103 return undef;
104}
105
b3ac6de7
IZ
106%constants = (
107 'integer' => 0x1000,
108 'float' => 0x2000,
109 'binary' => 0x4000,
110 'q' => 0x8000,
111 'qr' => 0x10000,
112 );
113
ee239bfe
IZ
114%ops = ( with_assign => "+ - * / % ** << >> x .",
115 assign => "+= -= *= /= %= **= <<= >>= x= .=",
2877bd81 116 num_comparison => "< <= > >= == !=",
ee239bfe 117 '3way_comparison'=> "<=> cmp",
2877bd81 118 str_comparison => "lt le gt ge eq ne",
ee239bfe
IZ
119 binary => "& | ^",
120 unary => "neg ! ~",
121 mutators => '++ --',
122 func => "atan2 cos sin exp abs log sqrt",
123 conversion => 'bool "" 0+',
f5284f61
IZ
124 iterators => '<>',
125 dereferencing => '${} @{} %{} &{} *{}',
ee239bfe
IZ
126 special => 'nomethod fallback =');
127
b3ac6de7
IZ
128sub constant {
129 # Arguments: what, sub
130 while (@_) {
131 $^H{$_[0]} = $_[1];
132 $^H |= $constants{$_[0]} | 0x20000;
133 shift, shift;
134 }
135}
136
137sub remove_constant {
138 # Arguments: what, sub
139 while (@_) {
140 delete $^H{$_[0]};
141 $^H &= ~ $constants{$_[0]};
142 shift, shift;
143 }
144}
145
4633a7c4
LW
1461;
147
148__END__
149
150=head1 NAME
151
cb1a09d0 152overload - Package for overloading perl operations
4633a7c4
LW
153
154=head1 SYNOPSIS
155
156 package SomeThing;
157
158 use overload
159 '+' => \&myadd,
160 '-' => \&mysub;
161 # etc
162 ...
163
164 package main;
165 $a = new SomeThing 57;
166 $b=5+$a;
167 ...
168 if (overload::Overloaded $b) {...}
169 ...
170 $strval = overload::StrVal $b;
171
4633a7c4
LW
172=head1 DESCRIPTION
173
174=head2 Declaration of overloaded functions
175
176The compilation directive
177
178 package Number;
179 use overload
180 "+" => \&add,
181 "*=" => "muas";
182
183declares function Number::add() for addition, and method muas() in
184the "class" C<Number> (or one of its base classes)
185for the assignment form C<*=> of multiplication.
186
187Arguments of this directive come in (key, value) pairs. Legal values
e7ea3e70
IZ
188are values legal inside a C<&{ ... }> call, so the name of a
189subroutine, a reference to a subroutine, or an anonymous subroutine
190will all work. Note that values specified as strings are
191interpreted as methods, not subroutines. Legal keys are listed below.
4633a7c4
LW
192
193The subroutine C<add> will be called to execute C<$a+$b> if $a
194is a reference to an object blessed into the package C<Number>, or if $a is
195not an object from a package with defined mathemagic addition, but $b is a
196reference to a C<Number>. It can also be called in other situations, like
197C<$a+=7>, or C<$a++>. See L<MAGIC AUTOGENERATION>. (Mathemagical
198methods refer to methods triggered by an overloaded mathematical
199operator.)
200
774d564b 201Since overloading respects inheritance via the @ISA hierarchy, the
202above declaration would also trigger overloading of C<+> and C<*=> in
203all the packages which inherit from C<Number>.
e7ea3e70 204
4633a7c4
LW
205=head2 Calling Conventions for Binary Operations
206
207The functions specified in the C<use overload ...> directive are called
208with three (in one particular case with four, see L<Last Resort>)
209arguments. If the corresponding operation is binary, then the first
210two arguments are the two arguments of the operation. However, due to
211general object calling conventions, the first argument should always be
212an object in the package, so in the situation of C<7+$a>, the
213order of the arguments is interchanged. It probably does not matter
214when implementing the addition method, but whether the arguments
215are reversed is vital to the subtraction method. The method can
216query this information by examining the third argument, which can take
217three different values:
218
219=over 7
220
221=item FALSE
222
223the order of arguments is as in the current operation.
224
225=item TRUE
226
227the arguments are reversed.
228
229=item C<undef>
230
231the current operation is an assignment variant (as in
232C<$a+=7>), but the usual function is called instead. This additional
ee239bfe
IZ
233information can be used to generate some optimizations. Compare
234L<Calling Conventions for Mutators>.
4633a7c4
LW
235
236=back
237
238=head2 Calling Conventions for Unary Operations
239
240Unary operation are considered binary operations with the second
241argument being C<undef>. Thus the functions that overloads C<{"++"}>
242is called with arguments C<($a,undef,'')> when $a++ is executed.
243
ee239bfe
IZ
244=head2 Calling Conventions for Mutators
245
246Two types of mutators have different calling conventions:
247
248=over
249
250=item C<++> and C<-->
251
252The routines which implement these operators are expected to actually
253I<mutate> their arguments. So, assuming that $obj is a reference to a
254number,
255
256 sub incr { my $n = $ {$_[0]}; ++$n; $_[0] = bless \$n}
257
258is an appropriate implementation of overloaded C<++>. Note that
259
260 sub incr { ++$ {$_[0]} ; shift }
261
262is OK if used with preincrement and with postincrement. (In the case
263of postincrement a copying will be performed, see L<Copy Constructor>.)
264
265=item C<x=> and other assignment versions
266
267There is nothing special about these methods. They may change the
268value of their arguments, and may leave it as is. The result is going
269to be assigned to the value in the left-hand-side if different from
270this value.
271
f610777f 272This allows for the same method to be used as overloaded C<+=> and
ee239bfe
IZ
273C<+>. Note that this is I<allowed>, but not recommended, since by the
274semantic of L<"Fallback"> Perl will call the method for C<+> anyway,
275if C<+=> is not overloaded.
276
277=back
278
279B<Warning.> Due to the presense of assignment versions of operations,
280routines which may be called in assignment context may create
f610777f 281self-referential structures. Currently Perl will not free self-referential
ee239bfe
IZ
282structures until cycles are C<explicitly> broken. You may get problems
283when traversing your structures too.
284
285Say,
286
287 use overload '+' => sub { bless [ \$_[0], \$_[1] ] };
288
289is asking for trouble, since for code C<$obj += $foo> the subroutine
290is called as C<$obj = add($obj, $foo, undef)>, or C<$obj = [\$obj,
291\$foo]>. If using such a subroutine is an important optimization, one
292can overload C<+=> explicitly by a non-"optimized" version, or switch
293to non-optimized version if C<not defined $_[2]> (see
294L<Calling Conventions for Binary Operations>).
295
296Even if no I<explicit> assignment-variants of operators are present in
297the script, they may be generated by the optimizer. Say, C<",$obj,"> or
298C<',' . $obj . ','> may be both optimized to
299
300 my $tmp = ',' . $obj; $tmp .= ',';
301
4633a7c4
LW
302=head2 Overloadable Operations
303
ee239bfe 304The following symbols can be specified in C<use overload> directive:
4633a7c4
LW
305
306=over 5
307
308=item * I<Arithmetic operations>
309
310 "+", "+=", "-", "-=", "*", "*=", "/", "/=", "%", "%=",
311 "**", "**=", "<<", "<<=", ">>", ">>=", "x", "x=", ".", ".=",
312
313For these operations a substituted non-assignment variant can be called if
314the assignment variant is not available. Methods for operations "C<+>",
315"C<->", "C<+=>", and "C<-=>" can be called to automatically generate
316increment and decrement methods. The operation "C<->" can be used to
317autogenerate missing methods for unary minus or C<abs>.
318
ee239bfe
IZ
319See L<"MAGIC AUTOGENERATION">, L<"Calling Conventions for Mutators"> and
320L<"Calling Conventions for Binary Operations">) for details of these
321substitutions.
322
4633a7c4
LW
323=item * I<Comparison operations>
324
325 "<", "<=", ">", ">=", "==", "!=", "<=>",
326 "lt", "le", "gt", "ge", "eq", "ne", "cmp",
327
328If the corresponding "spaceship" variant is available, it can be
329used to substitute for the missing operation. During C<sort>ing
330arrays, C<cmp> is used to compare values subject to C<use overload>.
331
332=item * I<Bit operations>
333
334 "&", "^", "|", "neg", "!", "~",
335
336"C<neg>" stands for unary minus. If the method for C<neg> is not
3bc6ec80 337specified, it can be autogenerated using the method for
338subtraction. If the method for "C<!>" is not specified, it can be
339autogenerated using the methods for "C<bool>", or "C<\"\">", or "C<0+>".
4633a7c4
LW
340
341=item * I<Increment and decrement>
342
343 "++", "--",
344
345If undefined, addition and subtraction methods can be
346used instead. These operations are called both in prefix and
347postfix form.
348
349=item * I<Transcendental functions>
350
351 "atan2", "cos", "sin", "exp", "abs", "log", "sqrt",
352
353If C<abs> is unavailable, it can be autogenerated using methods
1fef88e7 354for "E<lt>" or "E<lt>=E<gt>" combined with either unary minus or subtraction.
4633a7c4
LW
355
356=item * I<Boolean, string and numeric conversion>
357
358 "bool", "\"\"", "0+",
359
f5284f61 360If one or two of these operations are not overloaded, the remaining ones can
4633a7c4
LW
361be used instead. C<bool> is used in the flow control operators
362(like C<while>) and for the ternary "C<?:>" operation. These functions can
363return any arbitrary Perl value. If the corresponding operation for this value
364is overloaded too, that operation will be called again with this value.
365
f5284f61
IZ
366=item * I<Iteration>
367
368 "<>"
369
370If not overloaded, the argument will be converted to a filehandle or
371glob (which may require a stringification). The same overloading
372happens both for the I<read-filehandle> syntax C<E<lt>$varE<gt>> and
373I<globbing> syntax C<E<lt>${var}E<gt>>.
374
375=item * I<Dereferencing>
376
377 '${}', '@{}', '%{}', '&{}', '*{}'.
378
379If not overloaded, the argument will be dereferenced I<as is>, thus
380should be of correct type. These functions should return a reference
381of correct type, or another object with overloaded dereferencing.
382
4633a7c4
LW
383=item * I<Special>
384
385 "nomethod", "fallback", "=",
386
387see L<SPECIAL SYMBOLS FOR C<use overload>>.
388
389=back
390
ee239bfe
IZ
391See L<"Fallback"> for an explanation of when a missing method can be
392autogenerated.
393
394A computer-readable form of the above table is available in the hash
395%overload::ops, with values being space-separated lists of names:
396
397 with_assign => '+ - * / % ** << >> x .',
398 assign => '+= -= *= /= %= **= <<= >>= x= .=',
2877bd81 399 num_comparison => '< <= > >= == !=',
ee239bfe 400 '3way_comparison'=> '<=> cmp',
2877bd81 401 str_comparison => 'lt le gt ge eq ne',
ee239bfe
IZ
402 binary => '& | ^',
403 unary => 'neg ! ~',
404 mutators => '++ --',
405 func => 'atan2 cos sin exp abs log sqrt',
406 conversion => 'bool "" 0+',
f5284f61
IZ
407 iterators => '<>',
408 dereferencing => '${} @{} %{} &{} *{}',
ee239bfe 409 special => 'nomethod fallback ='
4633a7c4 410
e7ea3e70
IZ
411=head2 Inheritance and overloading
412
774d564b 413Inheritance interacts with overloading in two ways.
e7ea3e70
IZ
414
415=over
416
417=item Strings as values of C<use overload> directive
418
774d564b 419If C<value> in
e7ea3e70
IZ
420
421 use overload key => value;
422
774d564b 423is a string, it is interpreted as a method name.
e7ea3e70
IZ
424
425=item Overloading of an operation is inherited by derived classes
426
774d564b 427Any class derived from an overloaded class is also overloaded. The
428set of overloaded methods is the union of overloaded methods of all
429the ancestors. If some method is overloaded in several ancestor, then
e7ea3e70 430which description will be used is decided by the usual inheritance
774d564b 431rules:
e7ea3e70 432
774d564b 433If C<A> inherits from C<B> and C<C> (in this order), C<B> overloads
434C<+> with C<\&D::plus_sub>, and C<C> overloads C<+> by C<"plus_meth">,
435then the subroutine C<D::plus_sub> will be called to implement
436operation C<+> for an object in package C<A>.
e7ea3e70
IZ
437
438=back
439
774d564b 440Note that since the value of the C<fallback> key is not a subroutine,
441its inheritance is not governed by the above rules. In the current
442implementation, the value of C<fallback> in the first overloaded
443ancestor is used, but this is accidental and subject to change.
e7ea3e70 444
4633a7c4
LW
445=head1 SPECIAL SYMBOLS FOR C<use overload>
446
447Three keys are recognized by Perl that are not covered by the above
448description.
449
774d564b 450=head2 Last Resort
4633a7c4
LW
451
452C<"nomethod"> should be followed by a reference to a function of four
453parameters. If defined, it is called when the overloading mechanism
454cannot find a method for some operation. The first three arguments of
455this function coincide with the arguments for the corresponding method if
456it were found, the fourth argument is the symbol
457corresponding to the missing method. If several methods are tried,
458the last one is used. Say, C<1-$a> can be equivalent to
459
460 &nomethodMethod($a,1,1,"-")
461
462if the pair C<"nomethod" =E<gt> "nomethodMethod"> was specified in the
463C<use overload> directive.
464
465If some operation cannot be resolved, and there is no function
466assigned to C<"nomethod">, then an exception will be raised via die()--
467unless C<"fallback"> was specified as a key in C<use overload> directive.
468
469=head2 Fallback
470
471The key C<"fallback"> governs what to do if a method for a particular
472operation is not found. Three different cases are possible depending on
473the value of C<"fallback">:
474
475=over 16
476
477=item * C<undef>
478
479Perl tries to use a
480substituted method (see L<MAGIC AUTOGENERATION>). If this fails, it
481then tries to calls C<"nomethod"> value; if missing, an exception
482will be raised.
483
484=item * TRUE
485
486The same as for the C<undef> value, but no exception is raised. Instead,
487it silently reverts to what it would have done were there no C<use overload>
488present.
489
490=item * defined, but FALSE
491
492No autogeneration is tried. Perl tries to call
493C<"nomethod"> value, and if this is missing, raises an exception.
494
495=back
496
e7ea3e70
IZ
497B<Note.> C<"fallback"> inheritance via @ISA is not carved in stone
498yet, see L<"Inheritance and overloading">.
499
4633a7c4
LW
500=head2 Copy Constructor
501
502The value for C<"="> is a reference to a function with three
503arguments, i.e., it looks like the other values in C<use
504overload>. However, it does not overload the Perl assignment
505operator. This would go against Camel hair.
506
507This operation is called in the situations when a mutator is applied
508to a reference that shares its object with some other reference, such
509as
510
511 $a=$b;
ee239bfe 512 ++$a;
4633a7c4
LW
513
514To make this change $a and not change $b, a copy of C<$$a> is made,
515and $a is assigned a reference to this new object. This operation is
ee239bfe 516done during execution of the C<++$a>, and not during the assignment,
4633a7c4 517(so before the increment C<$$a> coincides with C<$$b>). This is only
ee239bfe
IZ
518done if C<++> is expressed via a method for C<'++'> or C<'+='> (or
519C<nomethod>). Note that if this operation is expressed via C<'+'>
520a nonmutator, i.e., as in
4633a7c4
LW
521
522 $a=$b;
523 $a=$a+1;
524
525then C<$a> does not reference a new copy of C<$$a>, since $$a does not
526appear as lvalue when the above code is executed.
527
528If the copy constructor is required during the execution of some mutator,
529but a method for C<'='> was not specified, it can be autogenerated as a
530string copy if the object is a plain scalar.
531
532=over 5
533
534=item B<Example>
535
536The actually executed code for
537
538 $a=$b;
539 Something else which does not modify $a or $b....
540 ++$a;
541
542may be
543
544 $a=$b;
545 Something else which does not modify $a or $b....
546 $a = $a->clone(undef,"");
547 $a->incr(undef,"");
548
549if $b was mathemagical, and C<'++'> was overloaded with C<\&incr>,
550C<'='> was overloaded with C<\&clone>.
551
552=back
553
f610777f 554Same behaviour is triggered by C<$b = $a++>, which is consider a synonym for
ee239bfe
IZ
555C<$b = $a; ++$a>.
556
4633a7c4
LW
557=head1 MAGIC AUTOGENERATION
558
559If a method for an operation is not found, and the value for C<"fallback"> is
560TRUE or undefined, Perl tries to autogenerate a substitute method for
561the missing operation based on the defined operations. Autogenerated method
562substitutions are possible for the following operations:
563
564=over 16
565
566=item I<Assignment forms of arithmetic operations>
567
568C<$a+=$b> can use the method for C<"+"> if the method for C<"+=">
569is not defined.
570
571=item I<Conversion operations>
572
573String, numeric, and boolean conversion are calculated in terms of one
574another if not all of them are defined.
575
576=item I<Increment and decrement>
577
578The C<++$a> operation can be expressed in terms of C<$a+=1> or C<$a+1>,
579and C<$a--> in terms of C<$a-=1> and C<$a-1>.
580
581=item C<abs($a)>
582
583can be expressed in terms of C<$aE<lt>0> and C<-$a> (or C<0-$a>).
584
585=item I<Unary minus>
586
587can be expressed in terms of subtraction.
588
3bc6ec80 589=item I<Negation>
590
591C<!> and C<not> can be expressed in terms of boolean conversion, or
592string or numerical conversion.
593
4633a7c4
LW
594=item I<Concatenation>
595
596can be expressed in terms of string conversion.
597
598=item I<Comparison operations>
599
600can be expressed in terms of its "spaceship" counterpart: either
601C<E<lt>=E<gt>> or C<cmp>:
1fef88e7 602
4633a7c4
LW
603 <, >, <=, >=, ==, != in terms of <=>
604 lt, gt, le, ge, eq, ne in terms of cmp
605
f5284f61
IZ
606=item I<Iterator>
607
608 <> in terms of builtin operations
609
610=item I<Dereferencing>
611
612 ${} @{} %{} &{} *{} in terms of builtin operations
613
4633a7c4
LW
614=item I<Copy operator>
615
616can be expressed in terms of an assignment to the dereferenced value, if this
617value is a scalar and not a reference.
618
619=back
620
ee239bfe 621=head1 Losing overloading
4633a7c4
LW
622
623The restriction for the comparison operation is that even if, for example,
624`C<cmp>' should return a blessed reference, the autogenerated `C<lt>'
625function will produce only a standard logical value based on the
626numerical value of the result of `C<cmp>'. In particular, a working
627numeric conversion is needed in this case (possibly expressed in terms of
628other conversions).
629
630Similarly, C<.=> and C<x=> operators lose their mathemagical properties
631if the string conversion substitution is applied.
632
633When you chop() a mathemagical object it is promoted to a string and its
634mathemagical properties are lost. The same can happen with other
635operations as well.
636
637=head1 Run-time Overloading
638
639Since all C<use> directives are executed at compile-time, the only way to
640change overloading during run-time is to
641
642 eval 'use overload "+" => \&addmethod';
643
644You can also use
645
646 eval 'no overload "+", "--", "<="';
647
648though the use of these constructs during run-time is questionable.
649
650=head1 Public functions
651
652Package C<overload.pm> provides the following public functions:
653
654=over 5
655
656=item overload::StrVal(arg)
657
658Gives string value of C<arg> as in absence of stringify overloading.
659
660=item overload::Overloaded(arg)
661
662Returns true if C<arg> is subject to overloading of some operations.
663
664=item overload::Method(obj,op)
665
666Returns C<undef> or a reference to the method that implements C<op>.
667
668=back
669
b3ac6de7
IZ
670=head1 Overloading constants
671
672For some application Perl parser mangles constants too much. It is possible
673to hook into this process via overload::constant() and overload::remove_constant()
674functions.
675
676These functions take a hash as an argument. The recognized keys of this hash
677are
678
679=over 8
680
681=item integer
682
683to overload integer constants,
684
685=item float
686
687to overload floating point constants,
688
689=item binary
690
691to overload octal and hexadecimal constants,
692
693=item q
694
695to overload C<q>-quoted strings, constant pieces of C<qq>- and C<qx>-quoted
696strings and here-documents,
697
698=item qr
699
700to overload constant pieces of regular expressions.
701
702=back
703
704The corresponding values are references to functions which take three arguments:
705the first one is the I<initial> string form of the constant, the second one
706is how Perl interprets this constant, the third one is how the constant is used.
707Note that the initial string form does not
708contain string delimiters, and has backslashes in backslash-delimiter
709combinations stripped (thus the value of delimiter is not relevant for
710processing of this string). The return value of this function is how this
711constant is going to be interpreted by Perl. The third argument is undefined
712unless for overloaded C<q>- and C<qr>- constants, it is C<q> in single-quote
713context (comes from strings, regular expressions, and single-quote HERE
714documents), it is C<tr> for arguments of C<tr>/C<y> operators,
715it is C<s> for right-hand side of C<s>-operator, and it is C<qq> otherwise.
716
717Since an expression C<"ab$cd,,"> is just a shortcut for C<'ab' . $cd . ',,'>,
718it is expected that overloaded constant strings are equipped with reasonable
719overloaded catenation operator, otherwise absurd results will result.
720Similarly, negative numbers are considered as negations of positive constants.
721
722Note that it is probably meaningless to call the functions overload::constant()
723and overload::remove_constant() from anywhere but import() and unimport() methods.
724From these methods they may be called as
725
726 sub import {
727 shift;
728 return unless @_;
729 die "unknown import: @_" unless @_ == 1 and $_[0] eq ':constant';
730 overload::constant integer => sub {Math::BigInt->new(shift)};
731 }
732
733B<BUGS> Currently overloaded-ness of constants does not propagate
734into C<eval '...'>.
735
4633a7c4
LW
736=head1 IMPLEMENTATION
737
738What follows is subject to change RSN.
739
e7ea3e70
IZ
740The table of methods for all operations is cached in magic for the
741symbol table hash for the package. The cache is invalidated during
742processing of C<use overload>, C<no overload>, new function
743definitions, and changes in @ISA. However, this invalidation remains
744unprocessed until the next C<bless>ing into the package. Hence if you
745want to change overloading structure dynamically, you'll need an
746additional (fake) C<bless>ing to update the table.
747
748(Every SVish thing has a magic queue, and magic is an entry in that
749queue. This is how a single variable may participate in multiple
750forms of magic simultaneously. For instance, environment variables
751regularly have two forms at once: their %ENV magic and their taint
752magic. However, the magic which implements overloading is applied to
753the stashes, which are rarely used directly, thus should not slow down
754Perl.)
4633a7c4
LW
755
756If an object belongs to a package using overload, it carries a special
757flag. Thus the only speed penalty during arithmetic operations without
758overloading is the checking of this flag.
759
774d564b 760In fact, if C<use overload> is not present, there is almost no overhead
761for overloadable operations, so most programs should not suffer
762measurable performance penalties. A considerable effort was made to
763minimize the overhead when overload is used in some package, but the
764arguments in question do not belong to packages using overload. When
765in doubt, test your speed with C<use overload> and without it. So far
766there have been no reports of substantial speed degradation if Perl is
767compiled with optimization turned on.
4633a7c4 768
e7ea3e70
IZ
769There is no size penalty for data if overload is not used. The only
770size penalty if overload is used in some package is that I<all> the
771packages acquire a magic during the next C<bless>ing into the
772package. This magic is three-words-long for packages without
f610777f 773overloading, and carries the cache table if the package is overloaded.
4633a7c4
LW
774
775Copying (C<$a=$b>) is shallow; however, a one-level-deep copying is
776carried out before any operation that can imply an assignment to the
777object $a (or $b) refers to, like C<$a++>. You can override this
778behavior by defining your own copy constructor (see L<"Copy Constructor">).
779
780It is expected that arguments to methods that are not explicitly supposed
781to be changed are constant (but this is not enforced).
782
ee239bfe
IZ
783=head1 Metaphor clash
784
f610777f
A
785One may wonder why the semantic of overloaded C<=> is so counter intuitive.
786If it I<looks> counter intuitive to you, you are subject to a metaphor
ee239bfe
IZ
787clash.
788
789Here is a Perl object metaphor:
790
791I< object is a reference to blessed data>
792
793and an arithmetic metaphor:
794
795I< object is a thing by itself>.
796
797The I<main> problem of overloading C<=> is the fact that these metaphors
798imply different actions on the assignment C<$a = $b> if $a and $b are
799objects. Perl-think implies that $a becomes a reference to whatever
800$b was referencing. Arithmetic-think implies that the value of "object"
801$a is changed to become the value of the object $b, preserving the fact
802that $a and $b are separate entities.
803
804The difference is not relevant in the absence of mutators. After
805a Perl-way assignment an operation which mutates the data referenced by $a
806would change the data referenced by $b too. Effectively, after
807C<$a = $b> values of $a and $b become I<indistinguishable>.
808
809On the other hand, anyone who has used algebraic notation knows the
810expressive power of the arithmetic metaphor. Overloading works hard
811to enable this metaphor while preserving the Perlian way as far as
812possible. Since it is not not possible to freely mix two contradicting
813metaphors, overloading allows the arithmetic way to write things I<as
814far as all the mutators are called via overloaded access only>. The
815way it is done is described in L<Copy Constructor>.
816
817If some mutator methods are directly applied to the overloaded values,
818one may need to I<explicitly unlink> other values which references the
819same value:
820
821 $a = new Data 23;
822 ...
823 $b = $a; # $b is "linked" to $a
824 ...
825 $a = $a->clone; # Unlink $b from $a
826 $a->increment_by(4);
827
828Note that overloaded access makes this transparent:
829
830 $a = new Data 23;
831 $b = $a; # $b is "linked" to $a
832 $a += 4; # would unlink $b automagically
833
834However, it would not make
835
836 $a = new Data 23;
837 $a = 4; # Now $a is a plain 4, not 'Data'
838
839preserve "objectness" of $a. But Perl I<has> a way to make assignments
840to an object do whatever you want. It is just not the overload, but
841tie()ing interface (see L<perlfunc/tie>). Adding a FETCH() method
842which returns the object itself, and STORE() method which changes the
843value of the object, one can reproduce the arithmetic metaphor in its
844completeness, at least for variables which were tie()d from the start.
845
846(Note that a workaround for a bug may be needed, see L<"BUGS">.)
847
848=head1 Cookbook
849
850Please add examples to what follows!
851
852=head2 Two-face scalars
853
854Put this in F<two_face.pm> in your Perl library directory:
855
856 package two_face; # Scalars with separate string and
857 # numeric values.
858 sub new { my $p = shift; bless [@_], $p }
859 use overload '""' => \&str, '0+' => \&num, fallback => 1;
860 sub num {shift->[1]}
861 sub str {shift->[0]}
862
863Use it as follows:
864
865 require two_face;
866 my $seven = new two_face ("vii", 7);
867 printf "seven=$seven, seven=%d, eight=%d\n", $seven, $seven+1;
868 print "seven contains `i'\n" if $seven =~ /i/;
869
870(The second line creates a scalar which has both a string value, and a
871numeric value.) This prints:
872
873 seven=vii, seven=7, eight=8
874 seven contains `i'
875
f5284f61
IZ
876=head2 Two-face references
877
878Suppose you want to create an object which is accessible as both an
879array reference, and a hash reference, similar to the builtin
880L<array-accessible-as-a-hash|perlref/"Pseudo-hashes: Using an array as
881a hash"> builtin Perl type. Let us make it better than the builtin
882type, there will be no restriction that you cannot use the index 0 of
883your array.
884
885 package two_refs;
886 use overload '%{}' => \&gethash, '@{}' => sub { $ {shift()} };
887 sub new {
888 my $p = shift;
889 bless \ [@_], $p;
890 }
891 sub gethash {
892 my %h;
893 my $self = shift;
894 tie %h, ref $self, $self;
895 \%h;
896 }
897
898 sub TIEHASH { my $p = shift; bless \ shift, $p }
899 my %fields;
900 my $i = 0;
901 $fields{$_} = $i++ foreach qw{zero one two three};
902 sub STORE {
903 my $self = ${shift()};
904 my $key = $fields{shift()};
905 defined $key or die "Out of band access";
906 $$self->[$key] = shift;
907 }
908 sub FETCH {
909 my $self = ${shift()};
910 my $key = $fields{shift()};
911 defined $key or die "Out of band access";
912 $$self->[$key];
913 }
914
915Now one can access an object using both the array and hash syntax:
916
917 my $bar = new two_refs 3,4,5,6;
918 $bar->[2] = 11;
919 $bar->{two} == 11 or die 'bad hash fetch';
920
921Note several important features of this example. First of all, the
922I<actual> type of $bar is a scalar reference, and we do not overload
923the scalar dereference. Thus we can get the I<actual> non-overloaded
924contents of $bar by just using C<$$bar> (what we do in functions which
925overload dereference). Similarly, the object returned by the
926TIEHASH() method is a scalar reference.
927
928Second, we create a new tied hash each time the hash syntax is used.
929This allows us not to worry about a possibility of a reference loop,
930would would lead to a memory leak.
931
932Both these problems can be cured. Say, if we want to overload hash
933dereference on a reference to an object which is I<implemented> as a
934hash itself, the only problem one has to circumvent is how to access
935this I<actual> hash (as opposed to the I<virtual> exhibited by
936overloaded dereference operator). Here is one possible fetching routine:
937
938 sub access_hash {
939 my ($self, $key) = (shift, shift);
940 my $class = ref $self;
941 bless $self, 'overload::dummy'; # Disable overloading of %{}
942 my $out = $self->{$key};
943 bless $self, $class; # Restore overloading
944 $out;
945 }
946
947To move creation of the tied hash on each access, one may an extra
948level of indirection which allows a non-circular structure of references:
949
950 package two_refs1;
951 use overload '%{}' => sub { ${shift()}->[1] },
952 '@{}' => sub { ${shift()}->[0] };
953 sub new {
954 my $p = shift;
955 my $a = [@_];
956 my %h;
957 tie %h, $p, $a;
958 bless \ [$a, \%h], $p;
959 }
960 sub gethash {
961 my %h;
962 my $self = shift;
963 tie %h, ref $self, $self;
964 \%h;
965 }
966
967 sub TIEHASH { my $p = shift; bless \ shift, $p }
968 my %fields;
969 my $i = 0;
970 $fields{$_} = $i++ foreach qw{zero one two three};
971 sub STORE {
972 my $a = ${shift()};
973 my $key = $fields{shift()};
974 defined $key or die "Out of band access";
975 $a->[$key] = shift;
976 }
977 sub FETCH {
978 my $a = ${shift()};
979 my $key = $fields{shift()};
980 defined $key or die "Out of band access";
981 $a->[$key];
982 }
983
984Now if $baz is overloaded like this, then C<$bar> is a reference to a
985reference to the intermediate array, which keeps a reference to an
986actual array, and the access hash. The tie()ing object for the access
987hash is also a reference to a reference to the actual array, so
988
989=over
990
991=item *
992
993There are no loops of references.
994
995=item *
996
997Both "objects" which are blessed into the class C<two_refs1> are
998references to a reference to an array, thus references to a I<scalar>.
999Thus the accessor expression C<$$foo-E<gt>[$ind]> involves no
1000overloaded operations.
1001
1002=back
1003
ee239bfe
IZ
1004=head2 Symbolic calculator
1005
1006Put this in F<symbolic.pm> in your Perl library directory:
1007
1008 package symbolic; # Primitive symbolic calculator
1009 use overload nomethod => \&wrap;
1010
1011 sub new { shift; bless ['n', @_] }
1012 sub wrap {
1013 my ($obj, $other, $inv, $meth) = @_;
1014 ($obj, $other) = ($other, $obj) if $inv;
1015 bless [$meth, $obj, $other];
1016 }
1017
1018This module is very unusual as overloaded modules go: it does not
1019provide any usual overloaded operators, instead it provides the L<Last
1020Resort> operator C<nomethod>. In this example the corresponding
f610777f 1021subroutine returns an object which encapsulates operations done over
ee239bfe
IZ
1022the objects: C<new symbolic 3> contains C<['n', 3]>, C<2 + new
1023symbolic 3> contains C<['+', 2, ['n', 3]]>.
1024
1025Here is an example of the script which "calculates" the side of
1026circumscribed octagon using the above package:
1027
1028 require symbolic;
1029 my $iter = 1; # 2**($iter+2) = 8
1030 my $side = new symbolic 1;
1031 my $cnt = $iter;
1032
1033 while ($cnt--) {
1034 $side = (sqrt(1 + $side**2) - 1)/$side;
1035 }
1036 print "OK\n";
1037
1038The value of $side is
1039
1040 ['/', ['-', ['sqrt', ['+', 1, ['**', ['n', 1], 2]],
1041 undef], 1], ['n', 1]]
1042
1043Note that while we obtained this value using a nice little script,
1044there is no simple way to I<use> this value. In fact this value may
1045be inspected in debugger (see L<perldebug>), but ony if
1046C<bareStringify> B<O>ption is set, and not via C<p> command.
1047
1048If one attempts to print this value, then the overloaded operator
1049C<""> will be called, which will call C<nomethod> operator. The
1050result of this operator will be stringified again, but this result is
1051again of type C<symbolic>, which will lead to an infinite loop.
1052
1053Add a pretty-printer method to the module F<symbolic.pm>:
1054
1055 sub pretty {
1056 my ($meth, $a, $b) = @{+shift};
1057 $a = 'u' unless defined $a;
1058 $b = 'u' unless defined $b;
1059 $a = $a->pretty if ref $a;
1060 $b = $b->pretty if ref $b;
1061 "[$meth $a $b]";
1062 }
1063
1064Now one can finish the script by
1065
1066 print "side = ", $side->pretty, "\n";
1067
1068The method C<pretty> is doing object-to-string conversion, so it
1069is natural to overload the operator C<""> using this method. However,
1070inside such a method it is not necessary to pretty-print the
1071I<components> $a and $b of an object. In the above subroutine
1072C<"[$meth $a $b]"> is a catenation of some strings and components $a
1073and $b. If these components use overloading, the catenation operator
1074will look for an overloaded operator C<.>, if not present, it will
1075look for an overloaded operator C<"">. Thus it is enough to use
1076
1077 use overload nomethod => \&wrap, '""' => \&str;
1078 sub str {
1079 my ($meth, $a, $b) = @{+shift};
1080 $a = 'u' unless defined $a;
1081 $b = 'u' unless defined $b;
1082 "[$meth $a $b]";
1083 }
1084
1085Now one can change the last line of the script to
1086
1087 print "side = $side\n";
1088
1089which outputs
1090
1091 side = [/ [- [sqrt [+ 1 [** [n 1 u] 2]] u] 1] [n 1 u]]
1092
1093and one can inspect the value in debugger using all the possible
1094methods.
1095
1096Something is is still amiss: consider the loop variable $cnt of the
1097script. It was a number, not an object. We cannot make this value of
1098type C<symbolic>, since then the loop will not terminate.
1099
1100Indeed, to terminate the cycle, the $cnt should become false.
1101However, the operator C<bool> for checking falsity is overloaded (this
1102time via overloaded C<"">), and returns a long string, thus any object
1103of type C<symbolic> is true. To overcome this, we need a way to
1104compare an object to 0. In fact, it is easier to write a numeric
1105conversion routine.
1106
1107Here is the text of F<symbolic.pm> with such a routine added (and
f610777f 1108slightly modified str()):
ee239bfe
IZ
1109
1110 package symbolic; # Primitive symbolic calculator
1111 use overload
1112 nomethod => \&wrap, '""' => \&str, '0+' => \&num;
1113
1114 sub new { shift; bless ['n', @_] }
1115 sub wrap {
1116 my ($obj, $other, $inv, $meth) = @_;
1117 ($obj, $other) = ($other, $obj) if $inv;
1118 bless [$meth, $obj, $other];
1119 }
1120 sub str {
1121 my ($meth, $a, $b) = @{+shift};
1122 $a = 'u' unless defined $a;
1123 if (defined $b) {
1124 "[$meth $a $b]";
1125 } else {
1126 "[$meth $a]";
1127 }
1128 }
1129 my %subr = ( n => sub {$_[0]},
1130 sqrt => sub {sqrt $_[0]},
1131 '-' => sub {shift() - shift()},
1132 '+' => sub {shift() + shift()},
1133 '/' => sub {shift() / shift()},
1134 '*' => sub {shift() * shift()},
1135 '**' => sub {shift() ** shift()},
1136 );
1137 sub num {
1138 my ($meth, $a, $b) = @{+shift};
1139 my $subr = $subr{$meth}
1140 or die "Do not know how to ($meth) in symbolic";
1141 $a = $a->num if ref $a eq __PACKAGE__;
1142 $b = $b->num if ref $b eq __PACKAGE__;
1143 $subr->($a,$b);
1144 }
1145
1146All the work of numeric conversion is done in %subr and num(). Of
f610777f 1147course, %subr is not complete, it contains only operators used in the
ee239bfe
IZ
1148example below. Here is the extra-credit question: why do we need an
1149explicit recursion in num()? (Answer is at the end of this section.)
1150
1151Use this module like this:
1152
1153 require symbolic;
1154 my $iter = new symbolic 2; # 16-gon
1155 my $side = new symbolic 1;
1156 my $cnt = $iter;
1157
1158 while ($cnt) {
1159 $cnt = $cnt - 1; # Mutator `--' not implemented
1160 $side = (sqrt(1 + $side**2) - 1)/$side;
1161 }
1162 printf "%s=%f\n", $side, $side;
1163 printf "pi=%f\n", $side*(2**($iter+2));
1164
1165It prints (without so many line breaks)
1166
1167 [/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1]
1168 [n 1]] 2]]] 1]
1169 [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]=0.198912
1170 pi=3.182598
1171
1172The above module is very primitive. It does not implement
1173mutator methods (C<++>, C<-=> and so on), does not do deep copying
1174(not required without mutators!), and implements only those arithmetic
1175operations which are used in the example.
1176
f610777f 1177To implement most arithmetic operations is easy, one should just use
ee239bfe
IZ
1178the tables of operations, and change the code which fills %subr to
1179
1180 my %subr = ( 'n' => sub {$_[0]} );
1181 foreach my $op (split " ", $overload::ops{with_assign}) {
1182 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1183 }
1184 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1185 foreach my $op (split " ", "@overload::ops{ @bins }") {
1186 $subr{$op} = eval "sub {shift() $op shift()}";
1187 }
1188 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1189 print "defining `$op'\n";
1190 $subr{$op} = eval "sub {$op shift()}";
1191 }
1192
1193Due to L<Calling Conventions for Mutators>, we do not need anything
1194special to make C<+=> and friends work, except filling C<+=> entry of
1195%subr, and defining a copy constructor (needed since Perl has no
1196way to know that the implementation of C<'+='> does not mutate
1197the argument, compare L<Copy Constructor>).
1198
1199To implement a copy constructor, add C<'=' => \&cpy> to C<use overload>
1200line, and code (this code assumes that mutators change things one level
1201deep only, so recursive copying is not needed):
1202
1203 sub cpy {
1204 my $self = shift;
1205 bless [@$self], ref $self;
1206 }
1207
1208To make C<++> and C<--> work, we need to implement actual mutators,
1209either directly, or in C<nomethod>. We continue to do things inside
1210C<nomethod>, thus add
1211
1212 if ($meth eq '++' or $meth eq '--') {
1213 @$obj = ($meth, (bless [@$obj]), 1); # Avoid circular reference
1214 return $obj;
1215 }
1216
1217after the first line of wrap(). This is not a most effective
1218implementation, one may consider
1219
1220 sub inc { $_[0] = bless ['++', shift, 1]; }
1221
1222instead.
1223
1224As a final remark, note that one can fill %subr by
1225
1226 my %subr = ( 'n' => sub {$_[0]} );
1227 foreach my $op (split " ", $overload::ops{with_assign}) {
1228 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
1229 }
1230 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
1231 foreach my $op (split " ", "@overload::ops{ @bins }") {
1232 $subr{$op} = eval "sub {shift() $op shift()}";
1233 }
1234 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
1235 $subr{$op} = eval "sub {$op shift()}";
1236 }
1237 $subr{'++'} = $subr{'+'};
1238 $subr{'--'} = $subr{'-'};
1239
1240This finishes implementation of a primitive symbolic calculator in
124150 lines of Perl code. Since the numeric values of subexpressions
1242are not cached, the calculator is very slow.
1243
1244Here is the answer for the exercise: In the case of str(), we need no
1245explicit recursion since the overloaded C<.>-operator will fall back
1246to an existing overloaded operator C<"">. Overloaded arithmetic
1247operators I<do not> fall back to numeric conversion if C<fallback> is
1248not explicitly requested. Thus without an explicit recursion num()
1249would convert C<['+', $a, $b]> to C<$a + $b>, which would just rebuild
1250the argument of num().
1251
1252If you wonder why defaults for conversion are different for str() and
1253num(), note how easy it was to write the symbolic calculator. This
1254simplicity is due to an appropriate choice of defaults. One extra
f610777f
A
1255note: due to the explicit recursion num() is more fragile than sym():
1256we need to explicitly check for the type of $a and $b. If components
ee239bfe
IZ
1257$a and $b happen to be of some related type, this may lead to problems.
1258
1259=head2 I<Really> symbolic calculator
1260
1261One may wonder why we call the above calculator symbolic. The reason
1262is that the actual calculation of the value of expression is postponed
1263until the value is I<used>.
1264
1265To see it in action, add a method
1266
1267 sub STORE {
1268 my $obj = shift;
1269 $#$obj = 1;
1270 @$obj->[0,1] = ('=', shift);
1271 }
1272
1273to the package C<symbolic>. After this change one can do
1274
1275 my $a = new symbolic 3;
1276 my $b = new symbolic 4;
1277 my $c = sqrt($a**2 + $b**2);
1278
1279and the numeric value of $c becomes 5. However, after calling
1280
1281 $a->STORE(12); $b->STORE(5);
1282
1283the numeric value of $c becomes 13. There is no doubt now that the module
1284symbolic provides a I<symbolic> calculator indeed.
1285
1286To hide the rough edges under the hood, provide a tie()d interface to the
1287package C<symbolic> (compare with L<Metaphor clash>). Add methods
1288
1289 sub TIESCALAR { my $pack = shift; $pack->new(@_) }
1290 sub FETCH { shift }
1291 sub nop { } # Around a bug
1292
1293(the bug is described in L<"BUGS">). One can use this new interface as
1294
1295 tie $a, 'symbolic', 3;
1296 tie $b, 'symbolic', 4;
1297 $a->nop; $b->nop; # Around a bug
1298
1299 my $c = sqrt($a**2 + $b**2);
1300
1301Now numeric value of $c is 5. After C<$a = 12; $b = 5> the numeric value
1302of $c becomes 13. To insulate the user of the module add a method
1303
1304 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; }
1305
1306Now
1307
1308 my ($a, $b);
1309 symbolic->vars($a, $b);
1310 my $c = sqrt($a**2 + $b**2);
1311
1312 $a = 3; $b = 4;
1313 printf "c5 %s=%f\n", $c, $c;
1314
1315 $a = 12; $b = 5;
1316 printf "c13 %s=%f\n", $c, $c;
1317
1318shows that the numeric value of $c follows changes to the values of $a
1319and $b.
1320
4633a7c4
LW
1321=head1 AUTHOR
1322
1fef88e7 1323Ilya Zakharevich E<lt>F<ilya@math.mps.ohio-state.edu>E<gt>.
4633a7c4
LW
1324
1325=head1 DIAGNOSTICS
1326
1327When Perl is run with the B<-Do> switch or its equivalent, overloading
1328induces diagnostic messages.
1329
e7ea3e70
IZ
1330Using the C<m> command of Perl debugger (see L<perldebug>) one can
1331deduce which operations are overloaded (and which ancestor triggers
1332this overloading). Say, if C<eq> is overloaded, then the method C<(eq>
1333is shown by debugger. The method C<()> corresponds to the C<fallback>
1334key (in fact a presence of this method shows that this package has
1335overloading enabled, and it is what is used by the C<Overloaded>
ee239bfe 1336function of module C<overload>).
e7ea3e70 1337
4633a7c4
LW
1338=head1 BUGS
1339
aa689395 1340Because it is used for overloading, the per-package hash %OVERLOAD now
1341has a special meaning in Perl. The symbol table is filled with names
1342looking like line-noise.
4633a7c4 1343
a6006777 1344For the purpose of inheritance every overloaded package behaves as if
1345C<fallback> is present (possibly undefined). This may create
1346interesting effects if some package is not overloaded, but inherits
1347from two overloaded packages.
4633a7c4 1348
ee239bfe
IZ
1349Relation between overloading and tie()ing is broken. Overloading is
1350triggered or not basing on the I<previous> class of tie()d value.
1351
1352This happens because the presence of overloading is checked too early,
1353before any tie()d access is attempted. If the FETCH()ed class of the
1354tie()d value does not change, a simple workaround is to access the value
1355immediately after tie()ing, so that after this call the I<previous> class
1356coincides with the current one.
1357
1358B<Needed:> a way to fix this without a speed penalty.
1359
b3ac6de7
IZ
1360Barewords are not covered by overloaded string constants.
1361
ee239bfe
IZ
1362This document is confusing. There are grammos and misleading language
1363used in places. It would seem a total rewrite is needed.
4633a7c4
LW
1364
1365=cut
1366