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

Copyright2009–2012 Roel van Dijk
LicenseBSD3 (see the file LICENSE)
MaintainerRoel van Dijk <vandijk.roel@gmail.com>
Safe HaskellSafe
LanguageHaskell2010

Data.Set.Unicode

Description

 
Synopsis

Documentation

(∈) :: Ord α => α -> Set α -> Bool infix 4 Source #

(∈) = member

U+2208, ELEMENT OF

(∋) :: Ord α => Set α -> α -> Bool infix 4 Source #

(∋) = flip (∈)

U+220B, CONTAINS AS MEMBER

(∉) :: Ord α => α -> Set α -> Bool infix 4 Source #

(∉) = notMember

U+2209, NOT AN ELEMENT OF

(∌) :: Ord α => Set α -> α -> Bool infix 4 Source #

(∌) = flip (∉)

U+220C, DOES NOT CONTAIN AS MEMBER

(∅) :: Set α Source #

(∅) = empty

U+2205, EMPTY SET

(∪) :: Ord α => Set α -> Set α -> Set α infixl 6 Source #

(∪) = union

U+222A, UNION

(∖) :: Ord α => Set α -> Set α -> Set α infixl 9 Source #

(∖) = difference

U+2216, SET MINUS

(∆) :: Ord α => Set α -> Set α -> Set α infixl 9 Source #

Symmetric difference

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

U+2206, INCREMENT

(∩) :: Ord α => Set α -> Set α -> Set α infixr 6 Source #

(∩) = intersection

U+2229, INTERSECTION

(⊆) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

(⊆) = isSubsetOf

U+2286, SUBSET OF OR EQUAL TO

(⊇) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

(⊇) = flip (⊆)

U+2287, SUPERSET OF OR EQUAL TO

(⊈) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

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

U+2288, NEITHER A SUBSET OF NOR EQUAL TO

(⊉) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

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

U+2289, NEITHER A SUPERSET OF NOR EQUAL TO

(⊂) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

(⊂) = isProperSubsetOf

U+2282, SUBSET OF

(⊃) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

(⊃) = flip (⊂)

U+2283, SUPERSET OF

(⊄) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

a ⊄ b = not (a ⊂ b)

U+2284, NOT A SUBSET OF

(⊅) :: Ord α => Set α -> Set α -> Bool infix 4 Source #

a ⊅ b = not (a ⊃ b)

U+2285, NOT A SUPERSET OF