planet-mitchell-0.1.0: Planet Mitchell

Safe HaskellSafe
LanguageHaskell2010

ByteString.Latin1.Partial

Synopsis

Documentation

foldl1' :: (Char -> Char -> Char) -> ByteString -> Char #

A strict version of foldl1

foldr1 :: (Char -> Char -> Char) -> ByteString -> Char #

foldr1 is a variant of foldr that has no starting value argument, and thus must be applied to non-empty ByteStrings

foldr1' :: (Char -> Char -> Char) -> ByteString -> Char #

A strict variant of foldr1

head :: ByteString -> Char #

O(1) Extract the first element of a ByteString, which must be non-empty.

index :: ByteString -> Int -> Char #

O(1) ByteString index (subscript) operator, starting from 0.

init :: ByteString -> ByteString #

O(1) Return all the elements of a ByteString except the last one. An exception will be thrown in the case of an empty ByteString.

last :: ByteString -> Char #

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

maximum :: ByteString -> Char #

maximum returns the maximum value from a ByteString

minimum :: ByteString -> Char #

minimum returns the minimum value from a ByteString

tail :: ByteString -> ByteString #

O(1) Extract the elements after the head of a ByteString, which must be non-empty. An exception will be thrown in the case of an empty ByteString.