containers-unicode-symbols-0.3.1.1: Unicode alternatives for common functions and operators
Data.IntMap.Strict.Unicode
Description
Synopsis
(∈) :: Int -> IntMap α -> BoolSource
(∈) = member
member
U+2208, ELEMENT OF
(∋) :: IntMap α -> Int -> BoolSource
(∋) = flip (∈)
flip
U+220B, CONTAINS AS MEMBER
(∉) :: Int -> IntMap α -> BoolSource
(∉) = notMember
notMember
U+2209, NOT AN ELEMENT OF
(∌) :: IntMap α -> Int -> BoolSource
(∌) = flip (∉)
U+220C, DOES NOT CONTAIN AS MEMBER
(∅) :: IntMap αSource
(∅) = empty
empty
U+2205, EMPTY SET
(∪) :: IntMap α -> IntMap α -> IntMap αSource
(∪) = union
union
U+222A, UNION
(∖) :: IntMap α -> IntMap β -> IntMap αSource
(∖) = difference
difference
U+2216, SET MINUS
(∆) :: IntMap α -> IntMap α -> IntMap αSource
Symmetric difference
a ∆ b = (a ∖ b) ∪ (b ∖ a)
U+2206, INCREMENT
(∩) :: IntMap α -> IntMap β -> IntMap αSource
(∩) = intersection
intersection
U+2229, INTERSECTION