[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Namespace: HDF5DotNet
Assembly: HDF5DotNet (HDF5DotNet)
Assembly: HDF5DotNet (HDF5DotNet)
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration SelectOperator |
| C# |
|---|
public enum SelectOperator |
| C++ |
|---|
public enum class SelectOperator |
Members
| Member | Description |
|---|---|
| NOTA |
Retains only elements of the new selection that are not in
the existing selection.
|
| NOTB |
Retains only elements of the existing selection that are not
in the new selection.
|
| XOR |
Retains only the elements that are members of the new
selection or the existing selection, excluding elements that
are members of both selections. (Binary exclusive-OR, XOR)
|
| AND |
Retains only the overlapping portions of the new selection
and the existing selection. (Binary AND)
|
| OR |
Adds the new selection to the existing selection.
(Binary OR)
|
| SET |
Replaces the existing selection with the
parameters from this call. Overlapping blocks are not
supported with this operator.
|