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.delete :: forall a . Ord a => a -> Set a -> Set a
Set.fromList :: forall a . Ord a => [a] -> Set a
Set.insert :: forall a . Ord a => a -> Set a -> Set a
Set.member :: forall a . Ord a => a -> Set a -> Bool
Set.singleton :: forall a . Ord a => a -> Set a
Set.size :: forall a . Set a -> Int
Set.toList :: forall a . Set a -> [a]
Set.union :: forall a . Ord a => Set a -> Set a -> Set a
Show.show :: forall a . Show a => a -> Text
Tagged.Tagged :: forall (t :: Symbol) a . a -> Tagged t a
Text.appendFile :: Text -> Text -> IO ()
Text.breakOn :: Text -> Text -> (Text,Text)
Text.concat :: [Text] -> Text
Text.decodeUtf8 :: ByteString -> Text
Text.drop :: Int -> Text -> Text
Text.dropEnd :: Int -> Text -> Text
Text.encodeUtf8 :: Text -> ByteString
Text.eq :: Text -> Text -> Bool
Text.getContents :: IO Text
Text.getLine :: IO Text
Text.hPutStr :: Handle -> Text -> IO ()
Text.interact :: (Text -> Text) -> IO ()
Text.intercalate :: Text -> [Text] -> Text
Text.isInfixOf :: Text -> Text -> Bool
Text.isPrefixOf :: Text -> Text -> Bool
Text.isSuffixOf :: Text -> Text -> Bool
Text.length :: Text -> Int
Text.lines :: Text -> [Text]
Text.putStr :: Text -> IO ()
Text.putStrLn :: Text -> IO ()
Text.readFile :: Text -> IO Text
Text.readProcess :: ProcessConfig () () () -> IO (ExitCode,Text,Text)
Text.readProcessStdout_ :: ProcessConfig () () () -> IO Text
Text.readProcess_ :: ProcessConfig () () () -> IO (Text,Text)
Text.replace :: Text -> Text -> Text -> Text
Text.reverse :: Text -> Text
Text.setStdin :: Text -> ProcessConfig () () () -> ProcessConfig () () ()
Text.splitOn :: Text -> Text -> [Text]
Text.strip :: Text -> Text
Text.stripPrefix :: Text -> Text -> Maybe Text
Text.stripSuffix :: Text -> Text -> Maybe Text
Text.take :: Int -> Text -> Text
Text.takeEnd :: Int -> Text -> Text
Text.toLower :: Text -> Text
Text.toUpper :: Text -> Text
Text.unlines :: [Text] -> Text
Text.unwords :: [Text] -> Text
Text.words :: Text -> [Text]
Text.writeFile :: Text -> Text -> IO ()
Timeout.timeout :: forall a . Int -> IO a -> IO (Maybe a)
Tuple.(,) :: forall a b . a -> b -> (a, b)
Tuple.(,,) :: forall a b c . a -> b -> c -> (a, b, c)
Tuple.(,,,) :: forall a b c d . a -> b -> c -> d -> (a, b, c, d)
Vector.fromList :: forall a . [a] -> Vector a
Vector.toList :: forall a . Vector a -> [a]