text-0.3: An efficient packed Unicode text type

PortabilityGHC
Stabilityexperimental
Maintainerbos@serpentine.com, rtharper@aftereternity.co.uk, duncan@haskell.org

Data.Text

Contents

Description

A time and space-efficient implementation of Unicode text using packed Word16 arrays. Suitable for performance critical use, both in terms of large data quantities and high speed.

This module is intended to be imported qualified, to avoid name clashes with Prelude functions, e.g.

 import qualified Data.Text as T

Synopsis

Fusion

Most of the functions in this module are subject to array fusion, meaning that a pipeline of functions will usually allocate at most one Text value.

Types

data Text Source

A space efficient, packed, unboxed Unicode text type.

Creation and elimination

pack :: String -> TextSource

O(n) Convert a String into a Text.

This function is subject to array fusion.

unpack :: Text -> StringSource

O(n) Convert a Text into a String. Subject to array fusion.

singleton :: Char -> TextSource

O(1) Convert a character into a Text. Subject to array fusion.

empty :: TextSource

O(1) The empty Text.

Basic interface

cons :: Char -> Text -> TextSource

O(n) Adds a character to the front of a Text. This function is more costly than its List counterpart because it requires copying a new array. Subject to array fusion.

snoc :: Text -> Char -> TextSource

O(n) Adds a character to the end of a Text. This copies the entire array in the process. Subject to array fusion.

append :: Text -> Text -> TextSource

O(n) Appends one Text to the other by copying both of them into a new Text. Subject to array fusion.

uncons :: Text -> Maybe (Char, Text)Source

O(1) Returns the first character and rest of a Text, or Nothing if empty. Subject to array fusion.

head :: Text -> CharSource

O(1) Returns the first character of a Text, which must be non-empty. Subject to array fusion.

last :: Text -> CharSource

O(1) Returns the last character of a Text, which must be non-empty. Subject to array fusion.

tail :: Text -> TextSource

O(1) Returns all characters after the head of a Text, which must be non-empty. Subject to array fusion.

init :: Text -> TextSource

O(1) Returns all but the last character of a Text, which must be non-empty. Subject to array fusion.

null :: Text -> BoolSource

O(1) Tests whether a Text is empty or not. Subject to array fusion.

length :: Text -> IntSource

O(n) Returns the number of characters in a Text. Subject to array fusion.

Transformations

map :: (Char -> Char) -> Text -> TextSource

O(n) map f xs is the Text obtained by applying f to each element of xs. Subject to array fusion.

intercalate :: Text -> [Text] -> TextSource

O(n) The intercalate function takes a Text and a list of Texts and concatenates the list after interspersing the first argument between each element of the list.

intersperse :: Char -> Text -> TextSource

O(n) The intersperse function takes a character and places it between the characters of a Text. Subject to array fusion.

transpose :: [Text] -> [Text]Source

O(n) The transpose function transposes the rows and columns of its Text argument. Note that this function uses pack, unpack, and the list version of transpose, and is thus not very efficient.

reverse :: Text -> TextSource

O(n) Reverse the characters of a string. Subject to array fusion.

Case conversion

With Unicode text, it is incorrect to use combinators like map toUpper to case convert each character of a string individually. Instead, use the whole-string case conversion functions from this module. For correctness in different writing systems, these functions may map one input character to two or three output characters.

toCaseFold :: Text -> TextSource

O(n) Convert a string to folded case. This function is mainly useful for performing caseless (or case insensitive) string comparisons.

A string x is a caseless match for a string y if and only if:

toCaseFold x == toCaseFold y

The result string may be longer than the input string, and may differ from applying toLower to the input string. For instance, the Armenian small ligature men now (U+FB13) is case folded to the bigram men now (U+0574 U+0576), while the micro sign (U+00B5) is case folded to the Greek small letter letter mu (U+03BC) instead of itself.

toLower :: Text -> TextSource

O(n) Convert a string to lower case, using simple case conversion. The result string may be longer than the input string. For instance, the Latin capital letter I with dot above (U+0130) maps to the sequence Latin small letter i (U+0069) followed by combining dot above (U+0307).

toUpper :: Text -> TextSource

O(n) Convert a string to upper case, using simple case conversion. The result string may be longer than the input string. For instance, the German eszett (U+00DF) maps to the two-letter sequence SS.

Folds

foldl :: (b -> Char -> b) -> b -> Text -> bSource

O(n) foldl, applied to a binary operator, a starting value (typically the left-identity of the operator), and a Text, reduces the Text using the binary operator, from left to right. Subject to array fusion.

foldl' :: (b -> Char -> b) -> b -> Text -> bSource

O(n) A strict version of foldl. Subject to array fusion.

foldl1 :: (Char -> Char -> Char) -> Text -> CharSource

O(n) A variant of foldl that has no starting value argument, and thus must be applied to a non-empty Text. Subject to array fusion.

foldl1' :: (Char -> Char -> Char) -> Text -> CharSource

O(n) A strict version of foldl1. Subject to array fusion.

foldr :: (Char -> b -> b) -> b -> Text -> bSource

O(n) foldr, applied to a binary operator, a starting value (typically the right-identity of the operator), and a Text, reduces the Text using the binary operator, from right to left. Subject to array fusion.

foldr1 :: (Char -> Char -> Char) -> Text -> CharSource

O(n) A variant of foldr that has no starting value argument, and thust must be applied to a non-empty Text. Subject to array fusion.

Special folds

concat :: [Text] -> TextSource

O(n) Concatenate a list of Texts. Subject to array fusion.

concatMap :: (Char -> Text) -> Text -> TextSource

O(n) Map a function over a Text that results in a Text, and concatenate the results. This function is subject to array fusion.

Note: if in concatMap f t, f is defined in terms of fusible functions, it will also be fusible.

any :: (Char -> Bool) -> Text -> BoolSource

O(n) any p t determines whether any character in the Text t satisifes the predicate p. Subject to array fusion.

all :: (Char -> Bool) -> Text -> BoolSource

O(n) all p t determines whether all characters in the Text t satisify the predicate p. Subject to array fusion.

maximum :: Text -> CharSource

O(n) maximum returns the maximum value from a Text, which must be non-empty. Subject to array fusion.

minimum :: Text -> CharSource

O(n) minimum returns the minimum value from a Text, which must be non-empty. Subject to array fusion.

Construction

Scans

scanl :: (Char -> Char -> Char) -> Char -> Text -> TextSource

O(n) scanl is similar to foldl, but returns a list of successive reduced values from the left. This function is subject to array fusion.

 scanl f z [x1, x2, ...] == [z, z `f` x1, (z `f` x1) `f` x2, ...]

Note that

 last (scanl f z xs) == foldl f z xs.

scanl1 :: (Char -> Char -> Char) -> Text -> TextSource

O(n) scanl1 is a variant of scanl that has no starting value argument. This function is subject to array fusion.

 scanl1 f [x1, x2, ...] == [x1, x1 `f` x2, ...]

scanr :: (Char -> Char -> Char) -> Char -> Text -> TextSource

O(n) scanr is the right-to-left dual of scanl.

 scanr f v == reverse . scanl (flip f) v . reverse

scanr1 :: (Char -> Char -> Char) -> Text -> TextSource

O(n) scanr1 is a variant of scanr that has no starting value argument. This function is subject to array fusion.

Accumulating maps

mapAccumL :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)Source

O(n) Like a combination of map and foldl. Applies a function to each element of a Text, passing an accumulating parameter from left to right, and returns a final Text.

mapAccumR :: (a -> Char -> (a, Char)) -> a -> Text -> (a, Text)Source

The mapAccumR function behaves like a combination of map and foldr; it applies a function to each element of a Text, passing an accumulating parameter from right to left, and returning a final value of this accumulator together with the new Text.

Generation and unfolding

replicate :: Int -> Char -> TextSource

O(n) replicate n c is a Text of length n with c the value of every element. Subject to fusion.

unfoldr :: (a -> Maybe (Char, a)) -> a -> TextSource

O(n), where n is the length of the result. The unfoldr function is analogous to the List unfoldr. unfoldr builds a Text from a seed value. The function takes the element and returns Nothing if it is done producing the Text, otherwise Just (a,b). In this case, a is the next Char in the string, and b is the seed value for further production. Subject to fusion.

unfoldrN :: Int -> (a -> Maybe (Char, a)) -> a -> TextSource

O(n) Like unfoldr, unfoldrN builds a Text from a seed value. However, the length of the result should be limited by the first argument to unfoldrN. This function is more efficient than unfoldr when the maximum length of the result is known and correct, otherwise its performance is similar to unfoldr. Subject to fusion.

Substrings

Breaking strings

take :: Int -> Text -> TextSource

O(n) take n, applied to a Text, returns the prefix of the Text of length n, or the Text itself if n is greater than the length of the Text. Subject to fusion.

drop :: Int -> Text -> TextSource

O(n) drop n, applied to a Text, returns the suffix of the Text of length n, or the empty Text if n is greater than the length of the Text. Subject to fusion.

takeWhile :: (Char -> Bool) -> Text -> TextSource

O(n) takeWhile, applied to a predicate p and a Text, returns the longest prefix (possibly empty) of elements that satisfy p. This function is subject to array fusion.

dropWhile :: (Char -> Bool) -> Text -> TextSource

O(n) dropWhile p xs returns the suffix remaining after takeWhile p xs. This function is subject to array fusion.

splitAt :: Int -> Text -> (Text, Text)Source

O(n) splitAt n t returns a pair whose first element is a prefix of t of length n, and whose second is the remainder of the string. It is equivalent to (take n t, drop n t).

span :: (Char -> Bool) -> Text -> (Text, Text)Source

O(n) span, applied to a predicate p and text t, returns a pair whose first element is the longest prefix (possibly empty) of t of elements that satisfy p, and whose second is the remainder of the list.

break :: (Char -> Bool) -> Text -> (Text, Text)Source

O(n) break is like span, but the prefix returned is over elements that fail the predicate p.

group :: Text -> [Text]Source

O(n) Group characters in a string by equality.

groupBy :: (Char -> Char -> Bool) -> Text -> [Text]Source

O(n) Group characters in a string according to a predicate.

inits :: Text -> [Text]Source

O(n) Return all initial segments of the given Text, shortest first.

tails :: Text -> [Text]Source

O(n) Return all final segments of the given Text, longest first.

Breaking into many substrings

split :: Char -> Text -> [Text]Source

O(n) Break a Text into pieces separated by the Char argument, consuming the delimiter. I.e.

 split '\n' "a\nb\nd\ne" == ["a","b","d","e"]
 split 'a'  "aXaXaXa"    == ["","X","X","X",""]
 split 'x'  "x"          == ["",""]

and

 intercalate (singleton c) . split c == id
 split == splitWith . (==)

As for all splitting functions in this library, this function does not copy the substrings, it just constructs new Texts that are slices of the original.

splitWith :: (Char -> Bool) -> Text -> [Text]Source

O(n) Splits a Text into components delimited by separators, where the predicate returns True for a separator element. The resulting components do not contain the separators. Two adjacent separators result in an empty component in the output. eg.

 splitWith (=='a') "aabbaca" == ["","","bb","c",""]
 splitWith (=='a') []        == []

breakSubstringSource

Arguments

:: Text

String to search for

-> Text

String to search in

-> (Text, Text)

Head and tail of string broken at substring

O(n) Break a string on a substring, returning a pair of the part of the string prior to the match, and the rest of the string.

The following relationship holds:

 break (==c) l == breakSubstring (singleton c) l

For example, to tokenise a string, dropping delimiters:

 tokenise x y = h : if null t then [] else tokenise x (drop (length x) t)
     where (h,t) = breakSubstring x y

To skip to the first occurence of a string:

 snd (breakSubstring x y)

To take the parts of a string before a delimiter:

 fst (breakSubstring x y)

Breaking into lines and words

lines :: Text -> [Text]Source

O(n) Breaks a Text up into a list of Texts at newline Chars. The resulting strings do not contain newlines.

words :: Text -> [Text]Source

O(n) Breaks a Text up into a list of words, delimited by Chars representing white space.

unlines :: [Text] -> TextSource

O(n) Portably breaks a Text up into a list of Texts at line boundaries.

A line boundary is considered to be either a line feed, a carriage return immediately followed by a line feed, or a carriage return. This accounts for both Unix and Windows line ending conventions, and for the old convention used on Mac OS 9 and earlier.

O(n) Joins lines, after appending a terminating newline to each.

unwords :: [Text] -> TextSource

O(n) Joins words using single space characters.

Predicates

isPrefixOf :: Text -> Text -> BoolSource

O(n) The isPrefixOf function takes two Texts and returns True iff the first is a prefix of the second. This function is subject to fusion.

isSuffixOf :: Text -> Text -> BoolSource

O(n) The isSuffixOf function takes two Texts and returns True iff the first is a suffix of the second.

isInfixOf :: Text -> Text -> BoolSource

O(n) The isInfixOf function takes two Texts and returns True iff the first is contained, wholly and intact, anywhere within the second.

Searching

elem :: Char -> Text -> BoolSource

O(n) elem is the Text membership predicate.

filter :: (Char -> Bool) -> Text -> TextSource

O(n) filter, applied to a predicate and a Text, returns a Text containing those characters that satisfy the predicate.

find :: (Char -> Bool) -> Text -> Maybe CharSource

O(n) The find function takes a predicate and a Text, and returns the first element in matching the predicate, or Nothing if there is no such element.

partition :: (Char -> Bool) -> Text -> (Text, Text)Source

O(n) The partition function takes a predicate and a Text, and returns the pair of Texts with elements which do and do not satisfy the predicate, respectively; i.e.

 partition p t == (filter p t, filter (not . p) t)

Indexing

index :: Text -> Int -> CharSource

O(n) Text index (subscript) operator, starting from 0.

findIndex :: (Char -> Bool) -> Text -> Maybe IntSource

O(n) The findIndex function takes a predicate and a Text and returns the index of the first element in the Text satisfying the predicate. This function is subject to fusion.

findIndices :: (Char -> Bool) -> Text -> [Int]Source

The findIndices function extends findIndex, by returning the indices of all elements satisfying the predicate, in ascending order. This function is subject to fusion.

elemIndex :: Char -> Text -> Maybe IntSource

O(n) The elemIndex function returns the index of the first element in the given Text which is equal to the query element, or Nothing if there is no such element. This function is subject to fusion.

elemIndices :: Char -> Text -> [Int]Source

O(n) The elemIndices function returns the index of every element in the given Text which is equal to the query element. This function is subject to fusion.

count :: Char -> Text -> IntSource

O(n) The count function returns the number of times the query element appears in the given Text. This function is subject to fusion.

Zipping and unzipping

zip :: Text -> Text -> [(Char, Char)]Source

O(n) zip takes two Texts and returns a list of corresponding pairs of bytes. If one input Text is short, excess elements of the longer Text are discarded. This is equivalent to a pair of unpack operations.

zipWith :: (Char -> Char -> Char) -> Text -> Text -> TextSource

O(n) zipWith generalises zip by zipping with the function given as the first argument, instead of a tupling function.