diff options
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r-- | pod/perlfunc.pod | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index a8579106b5..7017c8f5df 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -149,7 +149,7 @@ do, import, no, package, require, use =item Keywords related to classes and object-orientedness -bless, dbmclose, dbmopen, package, ref, tie, untie, use +bless, dbmclose, dbmopen, package, ref, tie, tied, untie, use =item Low-level socket functions @@ -3024,6 +3024,13 @@ Unlike dbmopen(), the tie() function will not use or require a module for you--you need to do that explicitly yourself. See L<DB_File> or the F<Config> module for interesting tie() implementations. +=item tied VARIABLE + +Returns a reference to the object underlying VARIABLE (the same value +that was originally returned by the tie() call which bound the variable +to a package.) Returns the undefined value if VARIABLE isn't tied to a +package. + =item time Returns the number of non-leap seconds since 00:00:00 UTC, January 1, |