Skip to content
Snippets Groups Projects
Commit 48b51237 authored by Stephen R. van den Berg's avatar Stephen R. van den Berg
Browse files

Enhance docs.

parent ad4db314
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ class False ...@@ -97,7 +97,7 @@ class False
Boolean true = True(); Boolean true = True();
Boolean false = False(); Boolean false = False();
//! Objects that represents the boolean values true and false. In a //! Objects that represent the boolean values true and false. In a
//! boolean context these evaluate to true and false, respectively. //! boolean context these evaluate to true and false, respectively.
//! //!
//! They produce @expr{1@} and @expr{0@}, respectively, when cast to //! They produce @expr{1@} and @expr{0@}, respectively, when cast to
...@@ -116,13 +116,13 @@ Boolean false = False(); ...@@ -116,13 +116,13 @@ Boolean false = False();
//! something like //! something like
//! //!
//! @code //! @code
//! if (objectp(something) && something->is_val_true) ... //! if (objectp(something) && ([object]something)->is_val_true) ...
//! @endcode //! @endcode
//! //!
//! and //! and
//! //!
//! @code //! @code
//! if (objectp(something) && something->is_val_false) ... //! if (objectp(something) && ([object]something)->is_val_false) ...
//! @endcode //! @endcode
//! //!
//! respectively. See @[Val.null] for rationale. //! respectively. See @[Val.null] for rationale.
...@@ -177,7 +177,7 @@ Null null = Null(); ...@@ -177,7 +177,7 @@ Null null = Null();
//! something like //! something like
//! //!
//! @code //! @code
//! if (objectp(something) && something->is_val_null) ... //! if (objectp(something) && ([object]something)->is_val_null) ...
//! @endcode //! @endcode
//! //!
//! That way it's possible for other code to replace it with an //! That way it's possible for other code to replace it with an
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment