Difference between revisions of "Core.Terms.BitwiseOr"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
{{DISPLAYTITLE:OTX '''BitwiseOr'''}}[[Category:Core]] | {{DISPLAYTITLE:OTX '''BitwiseOr'''}}[[Category:Core]] | ||
== Classification == | == Classification == | ||
− | {{ClassificationActivity | BitwiseOr | Bitwise OR operation two ByteFields | [[Term]] | [[ | + | {{ClassificationActivity | BitwiseOr | Bitwise OR operation two ByteFields | [[Term]] | [[Core|OTX Core library]] | [[ByteField operations]] | - | - }} |
== OTL Syntax == | == OTL Syntax == |
Latest revision as of 08:49, 16 February 2016
Contents
Classification
Name | BitwiseOr |
Short Description | Bitwise OR operation two ByteFields |
Class | Term |
Extension | OTX Core library |
Group | ByteField operations |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
Value = ByteFieldTerm1 | ByteFieldTerm2
Description
BitwiseOr is a term, which returns the bitwise OR operation of two ByteFields as a result.
![]() |
Important: Please keep in mind that this TermActivity in the form of an activity exists and no text can be entered. According to the respective ActionNode can further properties are added. |
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
ByteField | Return of the bitwise OR operation of two ByteField |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
ByteFieldTerm1 | ByteField | Term | - | [1] | Left operand |
ByteFieldTerm2 | ByteField | Term | - | [1] | Right operand |
OTL Examples
ByteField result;
result = &12 | &34;
//Returns result = &36
See also
BitwiseAnd
BitwiseXor
BitwiseNot
ByteFieldGetSize
SubByteField
GetBit