Improve discoverability of 'of' operator

This commit is contained in:
Michał Zieliński
2015-08-02 22:55:22 +02:00
parent 7af92708af
commit 0575437762
2 changed files with 3 additions and 1 deletions

View File

@@ -588,7 +588,8 @@ can also be defined with indentation instead of ``[]``:
Objects provide many features that tuples do not. Object provide inheritance
and information hiding. Objects have access to their type at runtime, so that
the ``of`` operator can be used to determine the object's type.
the ``of`` operator can be used to determine the object's type. The ``of`` operator
is similar to the ``instanceof`` operator in Java.
.. code-block:: nim
type

View File

@@ -487,6 +487,7 @@ type
## See the full `exception hierarchy`_.
ObjectConversionError* = object of Exception ## \
## Raised if an object is converted to an incompatible object type.
## You can use ``of`` operator to check if conversion will succeed.
##
## See the full `exception hierarchy`_.
FloatingPointError* = object of Exception ## \