Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. last :: HasCallStack => ByteString -> Word8

    bytestring Data.ByteString

    O(1) Extract the last element of a ByteString, which must be finite and non-empty. An exception will be thrown in the case of an empty ByteString. This is a partial function, consider using unsnoc instead.

  2. last :: ByteString -> Char

    bytestring Data.ByteString.Char8

    O(1) Extract the last element of a packed string, which must be non-empty.

  3. last :: HasCallStack => ByteString -> Word8

    bytestring Data.ByteString.Lazy

    O(n/c) Extract the last element of a ByteString, which must be finite and non-empty. This is a partial function, consider using unsnoc instead.

  4. last :: ByteString -> Char

    bytestring Data.ByteString.Lazy.Char8

    O(1) Extract the last element of a packed string, which must be non-empty.

  5. last :: HasCallStack => ShortByteString -> Word8

    bytestring Data.ByteString.Short

    O(1) Extract the last element of a ShortByteString, which must be finite and non-empty. An exception will be thrown in the case of an empty ShortByteString. This is a partial function, consider using unsnoc instead.

  6. last :: HasCallStack => ShortByteString -> Word8

    bytestring Data.ByteString.Short.Internal

    O(1) Extract the last element of a ShortByteString, which must be finite and non-empty. An exception will be thrown in the case of an empty ShortByteString. This is a partial function, consider using unsnoc instead.

  7. last :: HasCallStack => Text -> Char

    text Data.Text

    O(1) Returns the last character of a Text, which must be non-empty. This is a partial function, consider using unsnoc instead.

  8. last :: HasCallStack => Stream Char -> Char

    text Data.Text.Internal.Fusion.Common

    O(n) Returns the last character of a Stream Char, which must be non-empty. Properties

    last . stream = last
    

  9. last :: HasCallStack => Text -> Char

    text Data.Text.Lazy

    O(n/c) Returns the last character of a Text, which must be non-empty. This is a partial function, consider using unsnoc instead.

  10. last :: forall (m :: Type -> Type) a o . Monad m => ConduitT a o m (Maybe a)

    conduit Data.Conduit.Combinators

    Retrieve the last value in the stream, if present. Subject to fusion

Page 6 of many | Previous | Next