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

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

Data.IntMap.Strict.Unicode

Description

 

Synopsis

Documentation

(∈) :: Int -> IntMap α -> BoolSource

(∈) = member

U+2208, ELEMENT OF

(∋) :: IntMap α -> Int -> BoolSource

(∋) = flip (∈)

U+220B, CONTAINS AS MEMBER

(∉) :: Int -> IntMap α -> BoolSource

(∉) = notMember

U+2209, NOT AN ELEMENT OF

(∌) :: IntMap α -> Int -> BoolSource

(∌) = flip (∉)

U+220C, DOES NOT CONTAIN AS MEMBER

(∅) :: IntMap αSource

(∅) = empty

U+2205, EMPTY SET

(∪) :: IntMap α -> IntMap α -> IntMap αSource

(∪) = union

U+222A, UNION

(∖) :: IntMap α -> IntMap β -> IntMap αSource

(∖) = 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

U+2229, INTERSECTION