Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

untie

Removes the tie binding from a variable, restoring normal access.

Breaks the association between a variable and its tie class established by tie. Subsequent accesses to the variable bypass the FETCH/STORE methods and operate on the variable directly. Returns true on success.

Implementation status: Stub. Always returns 1 (success) since tie is not yet implemented.

Synopsis

untie %hash;
untie @array;
untie $scalar;

See Also

tie, tied