Skip to content

Commit

Permalink
linking term operand
Browse files Browse the repository at this point in the history
  • Loading branch information
lichtkind committed May 16, 2012
1 parent 977e2a1 commit 28ddcbc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/appendix-g-glossary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ within a given execution phase

<a id="and"/>
**and** &mdash;
logical operation which results in [**True**](appendix-a-index.html#True)
only in case both operands (incoming information) are also **True**,
logical operation which results in [**True**](appendix-a-index.html#True) only
in case both [*operands*](#operand) (incoming information) are also **True**,
otherwise the result is [**False**](appendix-a-index.html#True),
following [*operator*](#operator) are working under that logic:
[**|**](appendix-a-index.html#junctive-and),
Expand Down Expand Up @@ -463,8 +463,8 @@ are combined with the data the operate on to so called [*objects*](#object).
<a id="or"/>
**or** &mdash;
logical operation that has a the result **True** if at least one of two
operands (incoming information) is also true, otherwise result is **False**
following operator working under that logic:
[*operands*](#operand) (incoming information) is also true,
otherwise result is **False**. Following operator working under that logic:
[**|**](appendix-a-index.html#junctive-or),
[**||**](appendix-a-index.html#logical-or),
[**//**](appendix-a-index.html#defined-or),
Expand Down Expand Up @@ -705,8 +705,8 @@ array [*parameter*](#parameter) that receives (slurps) all remaining
<a id="smartmatch"/>
**smartmatch** &mdash;
The original Perl 6 *smartmatch* [*operator*](#operator) looks like this:
[**~~**](appendix-a-index.html#smartmatch-op) and does an universal
"compare this with that" dependend on the [*types*](#type) of the [*operands*](#operand).
[**~~**](appendix-a-index.html#smartmatch-op) and does an universal "compare
this with that" dependend on the [*types*](#type) of the [*operands*](#operand).
That can range from simple comparison of two values to applying a [*regex*](#regex)
up to the question if two [*signatures*](#signature) are compatible -
all details in [that table](appendix-b-grouped.html#smartmatch).
Expand Down Expand Up @@ -813,8 +813,8 @@ strange names that start with UTF are most probably Unicode formats
<a id="xor"/>
**xor** *(eXclusive OR)* &mdash;
logical operation that has a the result **True** if only one of two
operands (incoming information) is also true, otherwise result is **False**,
following operator working under that logic:
[*operands*](#operand) (incoming information) is also true,
otherwise result is **False**. Following operator working under that logic:
[**\^**](appendix-a-index.html#junctive-xor),
[**\^\^**](appendix-a-index.html#logical-xor),
[**+\^**](appendix-a-index.html#numeric-xor),
Expand Down

0 comments on commit 28ddcbc

Please sign in to comment.