Class CartesianFunction
Represents the Leviathan lfn:cartesian() function.
Inheritance
System.Object
CartesianFunction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Assembly: dotNetRdf.dll
Syntax
public class CartesianFunction : ISparqlExpression
Constructors
|
Improve this Doc
View Source
CartesianFunction(ISparqlExpression, ISparqlExpression, ISparqlExpression, ISparqlExpression, ISparqlExpression, ISparqlExpression)
Creates a new 3D Cartesian Function.
Declaration
public CartesianFunction(ISparqlExpression x1, ISparqlExpression y1, ISparqlExpression z1, ISparqlExpression x2, ISparqlExpression y2, ISparqlExpression z2)
Parameters
|
Improve this Doc
View Source
CartesianFunction(ISparqlExpression, ISparqlExpression, ISparqlExpression, ISparqlExpression)
Creates a new 2D Cartesian Function.
Declaration
public CartesianFunction(ISparqlExpression x1, ISparqlExpression y1, ISparqlExpression x2, ISparqlExpression y2)
Parameters
Properties
|
Improve this Doc
View Source
Arguments
Gets the Arguments of the Expression.
Declaration
public IEnumerable<ISparqlExpression> Arguments { get; }
Property Value
|
Improve this Doc
View Source
CanParallelise
Gets whether an expression can safely be evaluated in parallel.
Declaration
public virtual bool CanParallelise { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Functor
Gets the Functor of the Expression.
Declaration
public string Functor { get; }
Property Value
|
Improve this Doc
View Source
Is3D
Declaration
public bool Is3D { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Type
Gets the Type of the Expression.
Declaration
public SparqlExpressionType Type { get; }
Property Value
|
Improve this Doc
View Source
Variables
Gets the Variables used in the function.
Declaration
public IEnumerable<string> Variables { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<T><string> |
|
|
Improve this Doc
View Source
X1
Declaration
public ISparqlExpression X1 { get; }
Property Value
|
Improve this Doc
View Source
X2
Declaration
public ISparqlExpression X2 { get; }
Property Value
|
Improve this Doc
View Source
Y1
Declaration
public ISparqlExpression Y1 { get; }
Property Value
|
Improve this Doc
View Source
Y2
Declaration
public ISparqlExpression Y2 { get; }
Property Value
|
Improve this Doc
View Source
Z1
Declaration
public ISparqlExpression Z1 { get; }
Property Value
|
Improve this Doc
View Source
Z2
Declaration
public ISparqlExpression Z2 { get; }
Property Value
Methods
|
Improve this Doc
View Source
Accept<T>(ISparqlExpressionVisitor<T>)
Declaration
public T Accept<T>(ISparqlExpressionVisitor<T> visitor)
Parameters
Returns
Type Parameters
|
Improve this Doc
View Source
Accept<TResult, TContext, TBinding>(ISparqlExpressionProcessor<TResult, TContext, TBinding>, TContext, TBinding)
Declaration
public TResult Accept<TResult, TContext, TBinding>(ISparqlExpressionProcessor<TResult, TContext, TBinding> processor, TContext context, TBinding binding)
Parameters
Returns
Type Parameters
Name |
Description |
TResult |
|
TContext |
|
TBinding |
|
|
Improve this Doc
View Source
ToString()
Gets the String representation of the function.
Declaration
public override string ToString()
Returns
Overrides
object.ToString()
|
Improve this Doc
View Source
Transforms the Expression using the given Transformer.
Declaration
public ISparqlExpression Transform(IExpressionTransformer transformer)
Parameters
Returns
Implements
Extension Methods