Created
February 9, 2012 16:00
-
-
Save bblfish/1780802 to your computer and use it in GitHub Desktop.
RDF with simple IRI model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.w3.rdf | |
import org.w3.algebraic._ | |
trait Module { | |
val xsdString = IRI("http://www.w3.org/2001/XMLSchema#string") | |
val rdfLangString = IRI("http://www.w3.org/1999/02/22-rdf-syntax-ns#langString") | |
trait GraphInterface extends Iterable[Triple] { self => | |
def ++(other: Graph): Graph | |
} | |
type Graph <: GraphInterface | |
type Triple | |
type Node | |
type IRI <: Node | |
type BNode <: Node | |
type Literal <: Node | |
type Lang <: IRI | |
trait GraphCompanionObject { | |
def empty: Graph | |
def apply(elems: Triple*): Graph | |
def apply(it: Iterable[Triple]): Graph | |
} | |
val Graph: GraphCompanionObject | |
val Triple: AlgebraicDataType3[Node, IRI, Node, Triple] | |
val IRI : AlgebraicDataType1[String, IRI] | |
val BNode: AlgebraicDataType1[String, BNode] | |
val Literal: AlgebraicDataType2[String, IRI, Literal] | |
val Lang: AlgebraicDataType1[String, Lang] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment