Hoogle Search
Within LTS Haskell 24.43 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
goldenByteStringFile :: FilePath -> IO ByteString -> GoldenTest ByteStringsydtest Test.Syd.Def.Golden Test that the produced bytestring is the same as what we find in the given golden file.
goldenLazyByteStringFile :: FilePath -> IO ByteString -> GoldenTest ByteStringsydtest Test.Syd.Def.Golden Test that the produced bytestring is the same as what we find in the given golden file. Note: This converts the lazy bytestring to a strict bytestring first.
pureGoldenByteStringBuilderFile :: FilePath -> Builder -> GoldenTest Buildersydtest Test.Syd.Def.Golden Test that the given lazy bytestring is the same as what we find in the given golden file. Note: This converts the builder to a strict bytestring first.
pureGoldenByteStringFile :: FilePath -> ByteString -> GoldenTest ByteStringsydtest Test.Syd.Def.Golden Test that the given bytestring is the same as what we find in the given golden file.
pureGoldenLazyByteStringFile :: FilePath -> ByteString -> GoldenTest ByteStringsydtest Test.Syd.Def.Golden Test that the given lazy bytestring is the same as what we find in the given golden file. Note: This converts the lazy bytestring to a strict bytestring first.
unsafeByteString :: ByteString -> Markupblaze-markup Text.Blaze Insert a ByteString. This is an unsafe operation:
- The ByteString could have the wrong encoding.
- The ByteString might contain illegal HTML characters (no escaping is done).
unsafeByteStringComment :: ByteString -> Markupblaze-markup Text.Blaze Create a comment from a ByteString value. The text should not contain "--". This is not checked by the library.
unsafeByteStringValue :: ByteString -> AttributeValueblaze-markup Text.Blaze Create an attribute value from a ByteString. See unsafeByteString for reasons why this might not be a good idea.
unsafeLazyByteString :: ByteString -> Markupblaze-markup Text.Blaze Insert a lazy ByteString. See unsafeByteString for reasons why this is an unsafe operation.
unsafeLazyByteStringComment :: ByteString -> Markupblaze-markup Text.Blaze Create a comment from a ByteString value. The text should not contain "--". This is not checked by the library.