This file is indexed.

/usr/share/doc/libghc-word8-doc/html/word8.txt is in libghc-word8-doc 0.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Word8 library
--   
--   Word8 library to be used with Data.ByteString
@package word8
@version 0.1.1


-- | Word8 library to be used with Data.ByteString. All function assumes
--   that <a>Word8</a> is encoded in Latin-1 (ISO-8859-1). All utility
--   functions are supposed to work as if those of <a>Char</a>. Exceptions
--   are described in the function documentations.
module Data.Word8

-- | 8-bit unsigned integer type
data Word8 :: *
isControl :: Word8 -> Bool
isSpace :: Word8 -> Bool
isLower :: Word8 -> Bool
isUpper :: Word8 -> Bool
isAlpha :: Word8 -> Bool
isAlphaNum :: Word8 -> Bool
isPrint :: Word8 -> Bool
isDigit :: Word8 -> Bool
isOctDigit :: Word8 -> Bool
isHexDigit :: Word8 -> Bool
isLetter :: Word8 -> Bool
isMark :: Word8 -> Bool
isNumber :: Word8 -> Bool
isPunctuation :: Word8 -> Bool
isSymbol :: Word8 -> Bool
isSeparator :: Word8 -> Bool
isAscii :: Word8 -> Bool
isLatin1 :: Word8 -> Bool
isAsciiUpper :: Word8 -> Bool
isAsciiLower :: Word8 -> Bool

-- | Micro sign/mu (0xb5) and small letter Y with diaeresis (0xff) remain
--   the same.
toUpper :: Word8 -> Word8
toLower :: Word8 -> Word8

-- | Micro sign/mu (0xb5) and small letter Y with diaeresis (0xff) remain
--   the same.
toTitle :: Word8 -> Word8
_nul :: Word8
_tab :: Word8
_lf :: Word8
_vt :: Word8
_np :: Word8
_cr :: Word8
_space :: Word8
_exclam :: Word8
_quotedbl :: Word8
_numbersign :: Word8
_dollar :: Word8
_percent :: Word8
_ampersand :: Word8
_quotesingle :: Word8
_parenleft :: Word8
_parenright :: Word8
_asterisk :: Word8
_plus :: Word8
_comma :: Word8
_hyphen :: Word8
_period :: Word8
_slash :: Word8
_0 :: Word8
_1 :: Word8
_2 :: Word8
_3 :: Word8
_4 :: Word8
_5 :: Word8
_6 :: Word8
_7 :: Word8
_8 :: Word8
_9 :: Word8
_colon :: Word8
_semicolon :: Word8
_less :: Word8
_equal :: Word8
_greater :: Word8
_question :: Word8
_at :: Word8
_A :: Word8
_B :: Word8
_C :: Word8
_D :: Word8
_E :: Word8
_F :: Word8
_G :: Word8
_H :: Word8
_I :: Word8
_J :: Word8
_K :: Word8
_L :: Word8
_M :: Word8
_N :: Word8
_O :: Word8
_P :: Word8
_Q :: Word8
_R :: Word8
_S :: Word8
_T :: Word8
_U :: Word8
_V :: Word8
_W :: Word8
_X :: Word8
_Y :: Word8
_Z :: Word8
_bracketleft :: Word8
_backslash :: Word8
_bracketright :: Word8
_circum :: Word8
_underscore :: Word8
_grave :: Word8
_a :: Word8
_b :: Word8
_c :: Word8
_d :: Word8
_e :: Word8
_f :: Word8
_g :: Word8
_h :: Word8
_i :: Word8
_j :: Word8
_k :: Word8
_l :: Word8
_m :: Word8
_n :: Word8
_o :: Word8
_p :: Word8
_q :: Word8
_r :: Word8
_s :: Word8
_t :: Word8
_u :: Word8
_v :: Word8
_w :: Word8
_x :: Word8
_y :: Word8
_z :: Word8
_braceleft :: Word8
_bar :: Word8
_braceright :: Word8
_tilde :: Word8
_del :: Word8
_nbsp :: Word8
_ordfeminine :: Word8
_softhyphen :: Word8
_mu :: Word8
_ordmasculine :: Word8
_s2 :: Word8
_s3 :: Word8
_s1 :: Word8
_1'4 :: Word8
_1'2 :: Word8
_3'4 :: Word8
_Agrave :: Word8
_Odieresis :: Word8
_Oslash :: Word8
_Thorn :: Word8
_germandbls :: Word8
_agrave :: Word8
_odieresis :: Word8
_oslash :: Word8
_thorn :: Word8
_ydieresis :: Word8


-- | Char8 library to be used with Data.ByteString.Char8. All function
--   assumes that only 8bit part of <a>Char</a> is used and it is encoded
--   in Latin-1 (ISO-8859-1). All utility functions are supposed to work as
--   if those of <a>Char</a>. Exceptions are described in the function
--   documentations.
module Data.Char8
isControl :: Char -> Bool
isSpace :: Char -> Bool
isLower :: Char -> Bool
isUpper :: Char -> Bool
isAlpha :: Char -> Bool
isAlphaNum :: Char -> Bool
isPrint :: Char -> Bool
isDigit :: Char -> Bool
isOctDigit :: Char -> Bool
isHexDigit :: Char -> Bool
isLetter :: Char -> Bool
isMark :: Char -> Bool
isNumber :: Char -> Bool
isPunctuation :: Char -> Bool
isSymbol :: Char -> Bool
isSeparator :: Char -> Bool
isAscii :: Char -> Bool
isLatin1 :: Char -> Bool
isAsciiUpper :: Char -> Bool
isAsciiLower :: Char -> Bool

-- | Micro sign/mu (0xb5) and small letter Y with diaeresis (0xff) remain
--   the same.
toUpper :: Char -> Char
toLower :: Char -> Char

-- | Micro sign/mu (0xb5) and small letter Y with diaeresis (0xff) remain
--   the same.
toTitle :: Char -> Char