fgl-5.8.2.0: Martin Erwig's Functional Graph Library
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Graph.Inductive.PatriciaTree

Description

An efficient implementation of Graph using big-endian patricia tree (i.e. Data.IntMap).

This module provides the following specialised functions to gain more performance, using GHC's RULES pragma:

Documentation

data Gr a b #

Instances

Instances details
Bifunctor Gr # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

bimap :: (a -> b) -> (c -> d) -> Gr a c -> Gr b d

first :: (a -> b) -> Gr a c -> Gr b c

second :: (b -> c) -> Gr a b -> Gr a c

DynGraph Gr # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

(&) :: Context a b -> Gr a b -> Gr a b #

Graph Gr # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

empty :: Gr a b #

isEmpty :: Gr a b -> Bool #

match :: Node -> Gr a b -> Decomp Gr a b #

mkGraph :: [LNode a] -> [LEdge b] -> Gr a b #

labNodes :: Gr a b -> [LNode a] #

matchAny :: Gr a b -> GDecomp Gr a b #

noNodes :: Gr a b -> Int #

nodeRange :: Gr a b -> (Node, Node) #

labEdges :: Gr a b -> [LEdge b] #

Functor (Gr a) # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

fmap :: (a0 -> b) -> Gr a a0 -> Gr a b

(<$) :: a0 -> Gr a b -> Gr a a0

Generic (Gr a b) # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Associated Types

type Rep (Gr a b) :: Type -> Type

Methods

from :: Gr a b -> Rep (Gr a b) x

to :: Rep (Gr a b) x -> Gr a b

(Read a, Read b) => Read (Gr a b) # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

readsPrec :: Int -> ReadS (Gr a b)

readList :: ReadS [Gr a b]

readPrec :: ReadPrec (Gr a b)

readListPrec :: ReadPrec [Gr a b]

(Show a, Show b) => Show (Gr a b) # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

showsPrec :: Int -> Gr a b -> ShowS

show :: Gr a b -> String

showList :: [Gr a b] -> ShowS

(NFData a, NFData b) => NFData (Gr a b) # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

rnf :: Gr a b -> ()

(Eq a, Ord b) => Eq (Gr a b) # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

Methods

(==) :: Gr a b -> Gr a b -> Bool

(/=) :: Gr a b -> Gr a b -> Bool

type Rep (Gr a b) # 
Instance details

Defined in Data.Graph.Inductive.PatriciaTree

type Rep (Gr a b)

type UGr = Gr () () #