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

Errno

Native Rust implementation built into the interpreter. Runtime: P5. See original documentation for the full Perl reference.

Functions

exists

exists $!{ENOENT}: check if name is a known errno constant.

fetch

$!{ENOENT}: return true if current errno matches the named constant,

false otherwise. Mirrors perl5 Errno.pm: sub FETCH { $!+0 == $Errno{$_[1]} }.

firstkey

return the first errno constant name for hash iteration.

import

no-op stub. Constants are handled at compile time.

nextkey

return the next errno constant name after the given key.

tiehash

return the class name as a blessed ref stub.