/ 2

fix / numeric â numeric_result Instance Public methods Performs division: the class of the resulting object depends on the class of numeric and on the magnitude of the result.

-@

-fix â integer Instance Public methods Negates fix (which might return a Bignum).

-

fix - numeric â numeric_result Instance Public methods Performs subtraction: the class of the resulting object depends on the class of numeric and on the magnitude of the result.

+

fix + numeric â numeric_result Instance Public methods Performs addition: the class of the resulting object depends on the class of numeric and on the magnitude of the result.

**

**(other) Instance Public methods Exponentiate by other power!

*

fix * numeric â numeric_result Instance Public methods Performs multiplication: the class of the resulting object depends on the class of numeric and on the magnitude of the result.

&

fix & integer â integer_result Instance Public methods Bitwise AND.

%

fix % other â real Instance Public methods Returns fix modulo other. See numeric.divmod for more information.

prune

prune() Class Public methods Skips the current file or directory, restarting the loop with the next entry. If the current file is a directory, that directory will not be recursively entered. Meaningful only within the block associated with ::find. See the Find module documentation for an example.

find

find(*paths) Class Public methods Calls the associated block with the name of every file and directory listed as arguments, then recursively on their subdirectories, and so on. Returns an enumerator if no block is given. See the Find module documentation for an example.