|
| 1 | +[](https://goreportcard.com/report/github.com/goloop/trit) [](https://github.com/goloop/trit/blob/master/LICENSE) [](https://godoc.org/github.com/goloop/trit) [](https://u24.gov.ua/) |
| 2 | + |
| 3 | + |
| 4 | +# trit |
| 5 | + |
| 6 | +It's useful package for working with trinary logic in Go! |
| 7 | + |
| 8 | +Package defines the data type and basic operations of a ternary logic system, often referred to as trinary or ternary logic. It supports three states, namely False, Nil, and True, with False represented by negative number (-1), Nil represented by zero (0), and True represented by positive number (1). |
| 9 | + |
| 10 | +The logic operations NOT, AND, OR, XOR, NAND, NOR, and XNOR are implemented as methods of the Trit type, with each method applying the logic operation on the Trit receiver and a Trit argument to produce a Trit result according to the trinary truth table. |
| 11 | + |
| 12 | +There are also some useful methods provided for checking the state of a Trit value (IsFalse, IsNil, IsTrue), setting a Trit value from an integer (Set), returning the underlying int8 value of a Trit (Int), and returning a string representation of a Trit value (String). |
| 13 | + |
| 14 | +Overall, this package can be beneficial in scenarios where a "maybe" or "unknown" state is needed, such as in database systems and logic circuits, and in the construction of trinary computers and balanced ternary systems. |
| 15 | + |
| 16 | +## Quick start |
| 17 | + |
| 18 | +Install package: |
| 19 | + |
| 20 | +```shell |
| 21 | +$ go get github.com/goloop/trit |
| 22 | +``` |
| 23 | + |
| 24 | +Some examples of using the package: |
| 25 | + |
| 26 | +```go |
| 27 | +package main |
| 28 | + |
| 29 | +import ( |
| 30 | + "fmt" |
| 31 | + |
| 32 | + "github.com/goloop/trit" |
| 33 | +) |
| 34 | + |
| 35 | +func main() { |
| 36 | + t1 := trit.True |
| 37 | + t2 := trit.False |
| 38 | + |
| 39 | + // IsTrue |
| 40 | + fmt.Println(t1.IsTrue()) // Output: True |
| 41 | + |
| 42 | + // IsFalse |
| 43 | + fmt.Println(t2.IsFalse()) // Output: True |
| 44 | + |
| 45 | + // Def |
| 46 | + t3 := trit.Nil |
| 47 | + t3.Def(trit.True) |
| 48 | + fmt.Println(t3) // Output: True |
| 49 | + |
| 50 | + // DefTrue |
| 51 | + t4 := trit.Nil |
| 52 | + t4.DefTrue() |
| 53 | + fmt.Println(t4) // Output: True |
| 54 | + |
| 55 | + // And |
| 56 | + result := t1.And(t2) |
| 57 | + fmt.Println(result) // Output: False |
| 58 | + |
| 59 | + // Or |
| 60 | + result = t1.Or(t2) |
| 61 | + fmt.Println(result) // Output: True |
| 62 | + |
| 63 | + // Xor |
| 64 | + result = t1.Xor(t2) |
| 65 | + fmt.Println(result) // Output: True |
| 66 | + |
| 67 | + // Nand |
| 68 | + result = t1.Nand(t2) |
| 69 | + fmt.Println(result) // Output: True |
| 70 | + |
| 71 | + // Nor |
| 72 | + result = t1.Nor(t2) |
| 73 | + fmt.Println(result) // Output: False |
| 74 | + |
| 75 | + // Xnor |
| 76 | + result = t1.Xnor(t2) |
| 77 | + fmt.Println(result) // Output: False |
| 78 | + |
| 79 | + // Int |
| 80 | + fmt.Println(t1.Int()) // Output: 1 |
| 81 | + |
| 82 | + // String |
| 83 | + fmt.Println(t1.String()) // Output: True |
| 84 | +} |
| 85 | + |
| 86 | +``` |
| 87 | + |
| 88 | +## Truth Tables |
| 89 | + |
| 90 | +The truth table for the three-valued logic system is shown here. It's a mathematical table used in logic—specifically in connection with three-valued algebra, three-valued functions, and propositional calculus—which sets out the functional values of logical expressions on each of their functional arguments, that is, for each combination of values taken by their logical variables. |
| 91 | + |
| 92 | +```shell |
| 93 | + NOT AND OR XOR |
| 94 | + A | B A | B | C A | B | C A | B | C |
| 95 | +------- ----------- ----------- ----------- |
| 96 | + T | F T | T | T T | T | T T | T | F |
| 97 | + N | N T | N | N T | N | T T | N | T |
| 98 | + F | T T | F | F T | F | T T | F | T |
| 99 | + N | T | N N | T | T N | T | T |
| 100 | + N | N | N N | N | N N | N | F |
| 101 | + N | F | F N | F | F N | F | F |
| 102 | + F | T | F F | T | T F | T | T |
| 103 | + F | N | F F | N | N F | N | T |
| 104 | + F | F | F F | F | F F | F | F |
| 105 | + |
| 106 | + NAND NOR XNOR |
| 107 | + A | B | C A | B | C A | B | C |
| 108 | +----------- ----------- ----------- |
| 109 | + T | T | F T | T | F T | T | T |
| 110 | + T | N | T T | N | F T | N | F |
| 111 | + T | F | T T | F | F T | F | F |
| 112 | + N | T | T N | T | F N | T | F |
| 113 | + N | N | T N | N | T N | N | T |
| 114 | + N | F | T N | F | F N | F | T |
| 115 | + F | T | T F | T | F F | T | F |
| 116 | + F | N | T F | N | T F | N | T |
| 117 | + F | F | T F | F | T F | F | T |
| 118 | +``` |
| 119 | + |
| 120 | +## Explanation |
| 121 | + |
| 122 | +Here's an explanation of some key parts of this package: |
| 123 | + |
| 124 | + - The Trit type is defined as an int8. This is a signed 8-bit integer, which means it can hold values between -128 and 127. |
| 125 | + |
| 126 | + - The Trit type is used to represent a "trinary digit," which can take on three states: False, Nil, and True. |
| 127 | + |
| 128 | + - Package defineds various methods on the Trit type that allow you to perform operations on trinary digits, including determining if a trinary digit represents False, Nil, or True, setting the value of a trinary digit based on an integer, normalizing a trinary digit, converting a trinary digit to an integer or a string, and performing logical NOT, AND, OR, XOR, NAND, NOR, and XNOR operations on trinary digits. |
| 129 | + |
| 130 | + - The Trit type is defined as an alias for int8, and it can take one of three constants as its value: False, Nil, or True. False corresponds to any negative number (including -1), Nil corresponds to 0, and True corresponds to any positive number (including 1). |
| 131 | + |
| 132 | + - There are four methods (Def, DefTrue, DefFalse, and Clean) that check if the value of a Trit is Nil and change its value based on the method called. For instance, DefTrue will set the Trit to True if its current value is Nil. |
| 133 | + |
| 134 | + - There are three methods (IsFalse, IsNil, and IsTrue) that check the state of a Trit and return a boolean indicating if the Trit is in the corresponding state. |
| 135 | + |
| 136 | + - These methods perform various operations like assigning a value to a Trit (Set), returning the normalized value of a Trit (Val), normalizing the Trit in place (Norm), getting the integer representation of the Trit (Int), and getting the string representation of the Trit (String). |
| 137 | + |
| 138 | + - There are several methods for performing logic operations on Trit values including Not, And, Or, Xor, Nand, and Nor. These methods implement trinary logic versions of their respective boolean logic operations. |
| 139 | + |
| 140 | + - The logic operation methods follow truth tables for ternary logic which are defined in the package comment section. |
0 commit comments