Operation
public enum Operation : String, Encodable
Sets the constraint operation.
= keeps regions equal to value < and <= keep regions less than value > and >= keep
regions greater than value [], (), [), and (] keep regions inside value[0] to
value[1] ], *)(, *[ keep regions outside value[0] to value[1]` Open vs. closed
intervals make no difference to constraint display, but all versions are allowed for consistency
with filter transforms.
Note
Used byContours.operation, Contour<ZData, XData, YData>.Contours.operation,
ContourCarpet<ZData, AData, BData>.Contours.operation.
-
Undocumented
Declaration
Swift
case equalTo = "=" -
Undocumented
Declaration
Swift
case lessThan = "<" -
Undocumented
Declaration
Swift
case greaterEqualThan = ">=" -
Undocumented
Declaration
Swift
case greaterThan = ">" -
Undocumented
Declaration
Swift
case lessEqualThan = "<=" -
Undocumented
Declaration
Swift
case insideInclusive = "[]" -
Undocumented
Declaration
Swift
case insideExclusive = "()" -
Undocumented
Declaration
Swift
case insideInclusiveExclusive = "[)" -
Undocumented
Declaration
Swift
case insideExclusiveInclusive = "(]" -
Undocumented
Declaration
Swift
case outsideInclusive = "][" -
Undocumented
Declaration
Swift
case outsideExclusive = ")(" -
Undocumented
Declaration
Swift
case outsideInclusiveExclusive = "](" -
Undocumented
Declaration
Swift
case outsideExclusiveInclusive = ")["
View on GitHub
Install in Dash
Operation Enumeration Reference