Sha256: 4622e35f41c5fe8934db299e2cd6dfff64b59f63f44826f3ff68b943493c65de
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
module SPARQL; module Algebra class Operator ## # The SPARQL `isBlank` operator. # # @example # (prefix ((xsd: <http://www.w3.org/2001/XMLSchema#>) # (: <http://example.org/things#>)) # (project (?x ?v) # (filter (isBlank ?v) # (bgp (triple ?x :p ?v))))) # # @see https://www.w3.org/TR/sparql11-query/#func-isBlank class IsBlank < Operator::Unary include Evaluatable NAME = :isBlank ## # Returns `true` if the operand is an `RDF::Node`, `false` otherwise. # # @param [RDF::Term] term # an RDF term # @return [RDF::Literal::Boolean] `true` or `false` # @raise [TypeError] if the operand is not an RDF term def apply(term) case term when RDF::Node then RDF::Literal::TRUE when RDF::Term then RDF::Literal::FALSE else raise TypeError, "expected an RDF::Term, but got #{term.inspect}" end end end # IsBlank end # Operator end; end # SPARQL::Algebra
Version data entries
5 entries across 5 versions & 1 rubygems