| Documentation | Build Status |
|---|---|
julia> using LogicalOperators: AND, OR, XOR, NOT, ∧, ∨, ⊕, ¬
julia> AND(1, 2) == 1 ∧ 2
true
julia> OR{Int}(1, 2, 3) == 1 ∨ 2 ∨ 3
true
julia> XOR("🧩", "🧩") == "🧩" ⊕ "🧩"
true
julia> NOT(true) == ¬true
true| Name | Name | Last commit date | ||
|---|---|---|---|---|