Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Pipes.Files.Types
Documentation
data FindOptions Source #
Constructors
FindOptions | |
Fields
|
Constructors
FileEntry | |
Fields
|
newFileEntry :: RawFilePath -> Int -> FindOptions -> FileEntry f Source #
class IsFilePath a where Source #
Minimal complete definition
getRawFilePath, getFilePath, fromRawFilePath, fromFilePath, fromTextPath
Methods
getRawFilePath :: a -> RawFilePath Source #
getFilePath :: a -> FilePath Source #
fromRawFilePath :: RawFilePath -> a Source #
fromFilePath :: FilePath -> a Source #
fromTextPath :: Text -> a Source #
Instances
IsFilePath ByteString Source # | |
Defined in Pipes.Files.Types Methods getRawFilePath :: ByteString -> RawFilePath Source # getFilePath :: ByteString -> FilePath Source # fromRawFilePath :: RawFilePath -> ByteString Source # fromFilePath :: FilePath -> ByteString Source # fromTextPath :: Text -> ByteString Source # | |
a ~ Char => IsFilePath [a] Source # | |
Defined in Pipes.Files.Types Methods getRawFilePath :: [a] -> RawFilePath Source # getFilePath :: [a] -> FilePath Source # fromRawFilePath :: RawFilePath -> [a] Source # fromFilePath :: FilePath -> [a] Source # fromTextPath :: Text -> [a] Source # |