Julian Ospald
fe6145d5be
we now have: * AnchoredFile -- for representing a file with context * File -- for representing a file only Both representations mean "file" in the broader sense, including directories.
10 lines
112 B
Haskell
10 lines
112 B
Haskell
module MyPrelude where
|
|
|
|
|
|
import Data.List
|
|
|
|
|
|
|
|
listIndices :: [a] -> [Int]
|
|
listIndices = findIndices (const True)
|