rdf4h 1.2.4 → 1.2.5
raw patch · 3 files changed
+7/−3 lines, 3 files
Files
- LICENSE.txt +2/−1
- rdf4h.cabal +2/−2
- src/Data/RDF/MGraph.hs +3/−0
LICENSE.txt view
@@ -1,4 +1,5 @@-Copyright (c) Calvin Smith+Copyright 2007-2012 Calvin Smith.+Copyright 2012-2014 Rob Stewart <robstewart57@gmail.com> All rights reserved.
rdf4h.cabal view
@@ -1,5 +1,5 @@ name: rdf4h-version: 1.2.4+version: 1.2.5 synopsis: A library for RDF processing in Haskell description: 'RDF for Haskell' is a library for working with RDF in Haskell.@@ -9,7 +9,7 @@ selecting triples that satisfy an arbitrary predicate function. author: Calvin Smith-copyright: (c) Calvin Smith+copyright: (c) Calvin Smith, Rob Stewart maintainer: Rob Stewart <robstewart@gmail.com> homepage: https://github.com/robstewart57/rdf4h bug-reports: https://github.com/robstewart57/rdf4h/issues
src/Data/RDF/MGraph.hs view
@@ -43,6 +43,9 @@ select = select' query = query' +instance Show MGraph where+ show gr = concatMap (\t -> show t ++ "\n") (triplesOf gr)+ -- some convenience type alias for readability -- An adjacency map for a subject, mapping from a predicate node to