Fixed documentation comment glitches in the logic ADTs
This commit is contained in:
parent
1c9f97b669
commit
1a13504796
3 changed files with 5 additions and 5 deletions
|
|
@ -30,7 +30,7 @@ Conjunction
|
|||
*/
|
||||
pure fn and(a: t, b: t) -> t { a && b }
|
||||
|
||||
/* Function: and
|
||||
/* Function: or
|
||||
|
||||
Disjunction
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@ Module: four
|
|||
|
||||
The fourrternary Belnap relevance logic FOUR represented as ADT
|
||||
|
||||
This allows reasoning with four logic values (true, false, none, both)
|
||||
This allows reasoning with four logic values (true, false, none, both).
|
||||
|
||||
Implementation: Truth values are represented using a single u8 and
|
||||
all operations are done using bitshifting which is fast
|
||||
all operations are done using bit operations which is fast
|
||||
on current cpus.
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@ Module: tri
|
|||
|
||||
ADT for the ternary Kleene logic K3
|
||||
|
||||
This allows reasoning with three logic values (true, false, unknown)
|
||||
This allows reasoning with three logic values (true, false, unknown).
|
||||
|
||||
Implementation: Truth values are represented using a single u8 and
|
||||
all operations are done using bitshifting which is fast
|
||||
all operations are done using bit operations which is fast
|
||||
on current cpus.
|
||||
*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue