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