| Tie-FlipFlop documentation | view source | Contained in the Tie-FlipFlop distribution. |
Tie::FlipFlop - Alternate between two values.
use Tie::FlipFlop;
tie my $flipflop => Tie::FlipFlop => qw /Red Green/;
print $flipflop; # Prints 'Red'.
print $flipflop; # Prints 'Green'.
print $flipflop; # Prints 'Red'.
Tie::FlipFlop allows you to tie a scalar in such a way that refering to
the scalar alternates between two values. When tying the scalar, exactly
two extra arguments have to be given, the values to be alternated between.
Assigning to the scalar leads to a fatal, but trappable, error.
The current sources of this module are found on github, git://github.com/Abigail/tie--flipflop.git.
Abigail <cpan@abigail.be>.
Copyright (C) 1999, 2009 by Abigail
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Tie-FlipFlop documentation | view source | Contained in the Tie-FlipFlop distribution. |