Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ISemanticLine.cs
1using System.Collections.Generic;
2using System.Threading.Tasks;
3
5{
9 public interface ISemanticLine : ISemanticModel
10 {
16 Task<IEnumerable<ISemanticTriple>> GetTriples(ISemanticElement X);
17
22 Task<IEnumerator<ISemanticElement>> GetValueEnumerator();
23 }
24}
Interface for semantic nodes.
Interface for semantic lines.
Task< IEnumerable< ISemanticTriple > > GetTriples(ISemanticElement X)
Gets available triples on the line, having a given coordinate.
Task< IEnumerator< ISemanticElement > > GetValueEnumerator()
Gets an enumerator of all values along the line.
Interface for semantic models.