containers-unicode-symbols-0.3.0.7: Unicode alternatives for common functions and operators

MaintainerRoel van Dijk <vandijk.roel@gmail.com>
Safe HaskellSafe-Infered

Data.IntSet.Unicode

Description

 

Synopsis

Documentation

(∈) :: Int -> IntSet -> BoolSource

(∈) = member

U+2208, ELEMENT OF

(∋) :: IntSet -> Int -> BoolSource

(∋) = flip (∈)

U+220B, CONTAINS AS MEMBER

(∉) :: Int -> IntSet -> BoolSource

(∉) = notMember

U+2209, NOT AN ELEMENT OF

(∌) :: IntSet -> Int -> BoolSource

(∌) = flip (∉)

U+220C, DOES NOT CONTAIN AS MEMBER

(∅) :: IntSetSource

(∅) = empty

U+2205, EMPTY SET

(∪) :: IntSet -> IntSet -> IntSetSource

(∪) = union

U+222A, UNION

(∖) :: IntSet -> IntSet -> IntSetSource

(∖) = difference

U+2216, SET MINUS

(∆) :: IntSet -> IntSet -> IntSetSource

Symmetric difference

a ∆ b = (a ∖ b) ∪ (b ∖ a)

U+2206, INCREMENT

(∩) :: IntSet -> IntSet -> IntSetSource

(∩) = intersection

U+2229, INTERSECTION

(⊆) :: IntSet -> IntSet -> BoolSource

(⊆) = isSubsetOf

U+2286, SUBSET OF OR EQUAL TO

(⊇) :: IntSet -> IntSet -> BoolSource

(⊇) = flip (⊆)

U+2287, SUPERSET OF OR EQUAL TO

(⊈) :: IntSet -> IntSet -> BoolSource

a ⊈ b = (a ≢ b) ∧ (a ⊄ b)

U+2288, NEITHER A SUBSET OF NOR EQUAL TO

(⊉) :: IntSet -> IntSet -> BoolSource

a ⊉ b = (a ≢ b) ∧ (a ⊅ b)

U+2289, NEITHER A SUPERSET OF NOR EQUAL TO

(⊂) :: IntSet -> IntSet -> BoolSource

(⊂) = isProperSubsetOf

U+2282, SUBSET OF

(⊃) :: IntSet -> IntSet -> BoolSource

(⊃) = flip (⊂)

U+2283, SUPERSET OF

(⊄) :: IntSet -> IntSet -> BoolSource

a ⊄ b = not (a ⊂ b)

U+2284, NOT A SUBSET OF

(⊅) :: IntSet -> IntSet -> BoolSource

a ⊅ b = not (a ⊃ b)

U+2285, NOT A SUPERSET OF