Interface ISparqlOperator
Interface which represents an operator in SPARQL e.g. +.
Assembly: dotNetRDF.dll
Syntax
public interface ISparqlOperator
Properties
|
Improve this Doc
View Source
Operator
Gets the Operator this is an implementation of.
Declaration
SparqlOperatorType Operator { get; }
Property Value
Methods
|
Improve this Doc
View Source
Apply(IValuedNode[])
Applies the operator to the given inputs.
Declaration
IValuedNode Apply(params IValuedNode[] ns)
Parameters
Returns
Exceptions
|
Improve this Doc
View Source
IsApplicable(IValuedNode[])
Gets whether the operator can be applied to the given inputs.
Declaration
bool IsApplicable(params IValuedNode[] ns)
Parameters
Returns
Type |
Description |
System.Boolean |
True if applicable to the given inputs. |
Extension Methods