Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Asn1BinarySetOperator.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
5
namespace
Waher.Content.Asn1.Model.Sets
6
{
10
public
abstract
class
Asn1BinarySetOperator
:
Asn1Values
11
{
12
private
readonly
Asn1Values
left;
13
private
readonly
Asn1Values
right;
14
20
public
Asn1BinarySetOperator
(
Asn1Values
Left
,
Asn1Values
Right
)
21
{
22
this.left =
Left
;
23
this.right =
Right
;
24
}
25
29
public
Asn1Values
Left
=> this.left;
30
34
public
Asn1Values
Right
=> this.right;
35
}
36
}
Waher.Content.Asn1.Model.Asn1Values
Abstract base class for sets of values
Definition:
Asn1Values.cs:11
Waher.Content.Asn1.Model.Sets.Asn1BinarySetOperator
Abstract base class of binary set operators
Definition:
Asn1BinarySetOperator.cs:11
Waher.Content.Asn1.Model.Sets.Asn1BinarySetOperator.Left
Asn1Values Left
Left set
Definition:
Asn1BinarySetOperator.cs:29
Waher.Content.Asn1.Model.Sets.Asn1BinarySetOperator.Asn1BinarySetOperator
Asn1BinarySetOperator(Asn1Values Left, Asn1Values Right)
Abstract base class of binary set operators
Definition:
Asn1BinarySetOperator.cs:20
Waher.Content.Asn1.Model.Sets.Asn1BinarySetOperator.Right
Asn1Values Right
Right set
Definition:
Asn1BinarySetOperator.cs:34
Waher.Content.Asn1.Model.Sets
Definition:
Asn1All.cs:6
IoTGateway
Content
Waher.Content.Asn1
Model
Sets
Asn1BinarySetOperator.cs
Generated by
1.9.5