File: NameSet.hs

package info (click to toggle)
happy 1.18.9-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,024 kB
  • sloc: haskell: 6,327; xml: 3,388; yacc: 809; makefile: 263
file content (10 lines) | stat: -rw-r--r-- 210 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
module NameSet (
   NameSet, null, member, empty, singleton,
   union, difference, filter, fold,
   fromList, toAscList
) where

import Prelude hiding ( null, filter )
import Data.IntSet

type NameSet = IntSet