bookhound-0.1.3.0: Simple Parser Combinators & Parsers for usual data formats
Safe HaskellNone
LanguageHaskell2010

Operations.Finder

Documentation

class Finder a where Source #

Minimal complete definition

toList

Methods

toList :: a -> [(String, a)] Source #

findAll :: ((String, a) -> Bool) -> a -> [a] Source #

find :: ((String, a) -> Bool) -> a -> Maybe a Source #

findByKeys :: [String] -> a -> Maybe a Source #

findByPath :: String -> a -> Maybe a Source #