diff --git a/docs/api/index.html b/docs/api/index.html index b47a032..d4cb54b 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -28,4 +28,4 @@ a -> Record xs -> Record ('ConsL k a xs)
  • Record.get :: forall (k :: Symbol) a (t :: Symbol) (xs :: List) . Tagged t (Record xs) -> a
  • Record.modify :: forall (k :: Symbol) a (t :: Symbol) (xs :: List) . (a -> a) -> Tagged t (Record xs) -> Tagged t (Record xs)
  • Record.nil :: Record 'NilL
  • Record.set :: forall (k :: Symbol) a (t :: Symbol) (xs :: List) . -a -> Tagged t (Record xs) -> Tagged t (Record xs)
  • Set

    Show

    Tagged

    Text

    Timeout

    Tuple

    Vector

    \ No newline at end of file +a -> Tagged t (Record xs) -> Tagged t (Record xs)

    Set

    Show

    Tagged

    Text

    Timeout

    Tuple

    Vector

    \ No newline at end of file diff --git a/src/Hell.hs b/src/Hell.hs index 4d72493..6362e02 100644 --- a/src/Hell.hs +++ b/src/Hell.hs @@ -1131,6 +1131,8 @@ polyLits = Map.fromList "Set.member" Set.member :: forall a. Ord a => a -> Set a -> Bool "Set.delete" Set.delete :: forall a. Ord a => a -> Set a -> Set a "Set.union" Set.union :: forall a. Ord a => Set a -> Set a -> Set a + "Set.difference" Set.difference :: forall a. Ord a => Set a -> Set a -> Set a + "Set.intersection" Set.intersection :: forall a. Ord a => Set a -> Set a -> Set a "Set.toList" Set.toList :: forall a. Set a -> [a] "Set.size" Set.size :: forall a. Set a -> Int "Set.singleton" Set.singleton :: forall a. Ord a => a -> Set a