Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
changes for Texas => ASCII
  • Loading branch information
tbrowder committed Sep 30, 2017
1 parent b9c9853 commit 415e9ad
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/core/set_addition.pm
@@ -1,5 +1,5 @@
# This file implements the following set operators:
# (+) baggy addition (Texas)
# (+) baggy addition (ASCII)
# ⊎ baggy addition

proto sub infix:<(+)>(|) is pure { * }
Expand Down
2 changes: 1 addition & 1 deletion src/core/set_difference.pm
@@ -1,5 +1,5 @@
# This file implements the following set operators:
# (-) set difference (Texas)
# (-) set difference (ASCII)
# βˆ– set difference

proto sub infix:<(-)>(|) is pure { * }
Expand Down
4 changes: 2 additions & 2 deletions src/core/set_elem.pm
@@ -1,8 +1,8 @@
# This file implements the following set operators:
# (elem) is an element of (Texas)
# (elem) is an element of (ASCII)
# ∈ is an element of
# βˆ‰ is NOT an element of
# (cont) contains (Texas)
# (cont) contains (ASCII)
# βˆ‹ contains
# ∌ does NOT contain

Expand Down
2 changes: 1 addition & 1 deletion src/core/set_intersection.pm
@@ -1,5 +1,5 @@
# This file implements the following set operators:
# (&) intersection (Texas)
# (&) intersection (ASCII)
# ∩ intersection

proto sub infix:<(&)>(|) is pure { * }
Expand Down
2 changes: 1 addition & 1 deletion src/core/set_multiply.pm
@@ -1,5 +1,5 @@
# This file implements the following set operators:
# (.) set multiplication (Texas)
# (.) set multiplication (ASCII)
# ⊍ set multiplication

proto sub infix:<(.)>(|) is pure { * }
Expand Down
4 changes: 2 additions & 2 deletions src/core/set_precedes.pm
@@ -1,7 +1,7 @@
# This file implements the following set operators:
# (<+) precedes (Texas)
# (<+) precedes (ASCII)
# β‰Ό precedes
# (>+) succeeds (Texas)
# (>+) succeeds (ASCII)
# ≽ succeeds

proto sub infix:<<(<+)>>($, $ --> Bool:D) is pure {
Expand Down
4 changes: 2 additions & 2 deletions src/core/set_proper_subset.pm
@@ -1,8 +1,8 @@
# This file implements the following set operators:
# (<) is a proper subset of (Texas)
# (<) is a proper subset of (ASCII)
# βŠ‚ is a proper subset of
# βŠ„ is NOT a proper subset of
# (>) is a proper superset of (Texas)
# (>) is a proper superset of (ASCII)
# βŠƒ is a proper superset of
# βŠ… is NOT a proper superset of

Expand Down
4 changes: 2 additions & 2 deletions src/core/set_subset.pm
@@ -1,8 +1,8 @@
# This file implements the following set operators:
# (<=) is a subset of (Texas)
# (<=) is a subset of (ASCII)
# βŠ† is a subset of
# ⊈ is NOT a subset of
# (>=) is a superset of (Texas)
# (>=) is a superset of (ASCII)
# βŠ‡ is a superset of
# βŠ‰ is NOT a superset of

Expand Down
2 changes: 1 addition & 1 deletion src/core/set_union.pm
@@ -1,5 +1,5 @@
# This file implements the following set operators:
# (|) union (Texas)
# (|) union (ASCII)
# βˆͺ union

proto sub infix:<(|)>(|) is pure { * }
Expand Down

0 comments on commit 415e9ad

Please sign in to comment.