Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
48b51237
Commit
48b51237
authored
7 years ago
by
Stephen R. van den Berg
Browse files
Options
Downloads
Patches
Plain Diff
Enhance docs.
parent
ad4db314
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/Val.pmod
+4
-4
4 additions, 4 deletions
lib/modules/Val.pmod
with
4 additions
and
4 deletions
lib/modules/Val.pmod
+
4
−
4
View file @
48b51237
...
@@ -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 represent
s
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment