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.IntSet.Unicode

Description

 
Synopsis

Documentation

(∈) :: Int -> IntSet -> Bool infix 4 Source #

(∈) = member

U+2208, ELEMENT OF

(∋) :: IntSet -> Int -> Bool infix 4 Source #

(∋) = flip (∈)

U+220B, CONTAINS AS MEMBER

(∉) :: Int -> IntSet -> Bool infix 4 Source #

(∉) = notMember

U+2209, NOT AN ELEMENT OF

(∌) :: IntSet -> Int -> Bool infix 4 Source #

(∌) = flip (∉)

U+220C, DOES NOT CONTAIN AS MEMBER

(∅) :: IntSet Source #

(∅) = empty

U+2205, EMPTY SET

(∪) :: IntSet -> IntSet -> IntSet infixl 6 Source #

(∪) = union

U+222A, UNION

(∖) :: IntSet -> IntSet -> IntSet infixl 9 Source #

(∖) = difference

U+2216, SET MINUS

(∆) :: IntSet -> IntSet -> IntSet infixl 9 Source #

Symmetric difference

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

U+2206, INCREMENT

(∩) :: IntSet -> IntSet -> IntSet infixr 6 Source #

(∩) = intersection

U+2229, INTERSECTION

(⊆) :: IntSet -> IntSet -> Bool infix 4 Source #

(⊆) = isSubsetOf

U+2286, SUBSET OF OR EQUAL TO

(⊇) :: IntSet -> IntSet -> Bool infix 4 Source #

(⊇) = flip (⊆)

U+2287, SUPERSET OF OR EQUAL TO

(⊈) :: IntSet -> IntSet -> Bool infix 4 Source #

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

U+2288, NEITHER A SUBSET OF NOR EQUAL TO

(⊉) :: IntSet -> IntSet -> Bool infix 4 Source #

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

U+2289, NEITHER A SUPERSET OF NOR EQUAL TO

(⊂) :: IntSet -> IntSet -> Bool infix 4 Source #

(⊂) = isProperSubsetOf

U+2282, SUBSET OF

(⊃) :: IntSet -> IntSet -> Bool infix 4 Source #

(⊃) = flip (⊂)

U+2283, SUPERSET OF

(⊄) :: IntSet -> IntSet -> Bool infix 4 Source #

a ⊄ b = not (a ⊂ b)

U+2284, NOT A SUBSET OF

(⊅) :: IntSet -> IntSet -> Bool infix 4 Source #

a ⊅ b = not (a ⊃ b)

U+2285, NOT A SUPERSET OF