-
-
17 Jan 2008 00:30:50 UTC
- Distribution: Tie-ToObject
- Module version: 0.03
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (0)
- Testers (22234 / 11 / 0)
- Kwalitee
Bus factor: 2- 100.00% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (2.95KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Scalar::Util
- Test::More
- Test::use::ok
- Tie::RefHash
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
Take me over?
The maintainer of this distribution is looking for someone to take over! If you're interested then please contact them via email.NAME
Tie::ToObject - Tie to an existing object.
SYNOPSIS
use Tie::ToObject; my $stolen = tied(%something); tie %something_else, 'Tie::ToObject', $stolen;
DESCRIPTION
While "tie" in perldoc allows tying to an arbitrary object, the class in question must support this in it's implementation of
TIEHASH
,TIEARRAY
or whatever.This class provides a very tie constructor that simply returns the object it was given as it's first argument.
This way side effects of calling
$object->TIEHASH
are avoided.This is used in Data::Visitor in order to tie a variable to an already existing object. This is also useful for cloning, when you want to clone the internal state object instead of going through the tie interface for that variable.
VERSION CONTROL
This module is maintained using Darcs. You can get the latest version from http://nothingmuch.woobling.org/code, and use
darcs send
to commit changes.AUTHOR
Yuval Kogman <nothingmuch@woobling.org>
COPYRIGHT
Copyright (c) 2008 Yuval Kogman. All rights reserved This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install Tie::ToObject, copy and paste the appropriate command in to your terminal.
cpanm Tie::ToObject
perl -MCPAN -e shell install Tie::ToObject
For more information on module installation, please visit the detailed CPAN module installation guide.