This file is indexed.

/usr/share/doc/haskell98-tutorial/html/code/Fringe.lhs is in haskell98-tutorial 200006-2-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
> module Fringe where
> import Tree ( Tree(..))

> fringe :: Tree a -> [a]   -- A different definition of fringe
> fringe (Leaf x) = [x]
> fringe (Branch x y) = fringe x