Sync with 5.4.0
[deliverable/titan.core.git] / help / info / or4b.html
CommitLineData
970ed795 1<!--
3abe9331 2 Copyright (c) 2000-2015 Ericsson Telecom AB
970ed795
EL
3
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/epl-v10.html
8 -->
9<html>
10<head>
11<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
12<meta http-equiv="Content-Language" content="en-us">
13<title>or4b</title>
14</head>
15<body bgcolor="#DAD3C5" vlink="#0094D2" link="#003258">
16<table align="left" border="0" cellspacing="0" cellpadding="0" valign=top>
17 <tr>
18 <td width=105 height=40><a href="https://projects.eclipse.org/projects/tools.titan"><img src="../images/titan_transparent.gif" border=0 width=105 height=40 align="left" alt="Titan"></a></td>
19 </tr>
20</table>
21<table border="0" align="right" cellpadding="0" cellspacing="0">
22 <tr>
23 <td><a href="../titan_main.html" alt="contents"><img border="0" src="../images/ao.jpg" width="53" height="40"></a></td>
24 <td><a href="../titan_index.html" alt="index"><img border="0" src="../images/up.jpg" width="53" height="40"></a></td>
25 <td><a href="or.html" alt="previous"><img border="0" src="../images/left.jpg" width="53" height="40"></a></td>
26 <td><a href="out.html" alt="next"><img border="0" src="../images/right.jpg" width="53" height="40"></a></td>
27 </tr>
28</table>
29<p><br clear="all">
30</p>
31<hr>
32<h1>or4b</h1>
33<hr align="left" width="75%">
34<p>The keyword <b><font face="Courier New">or4b</font></b> belongs to the family of the bitwise operators operating on <font face="Courier New"><b>bitstring</b></font>s, <font face="Courier New"><b>hexstring</b></font>s
35or <font face="Courier New"><b>octetstring</b></font>s of equal length. It performs the following operation: for each corresponding bit position, the resulting value is 0 if both bits are set to 0,
36otherwise the value for the resulting bit is 1.</p>
37<p>Related keywords:</p>
38<ul>
39 <li><a href="bitstring.html"><b><font face="Courier New" color="#003258" size="4">bitstring</font></b></a></li>
40 <li><a href="hexstring.html"><b><font face="Courier New" color="#003258" size="4">hexstring</font></b></a></li>
41 <li><a href="octetstring.html"><b><font face="Courier New" color="#003258" size="4">octetstring</font></b></a></li>
42 <li><a href="and4b.html"><b><font face="Courier New" color="#003258" size="4">and4b</font></b></a></li>
43 <li><a href="not4b.html"><b><font face="Courier New" color="#003258" size="4">not4b</font></b></a></li>
44 <li><a href="xor4b.html"><b><font face="Courier New" color="#003258" size="4">xor4b</font></b></a></li>
45</ul>
46<hr align="left" width="50%">
47<div align="center">
48<center>
49<table border="0" width="90%" bgcolor="#FFB599" cellpadding="4">
50 <tr>
51 <td width="100%">
52 <h3 align="center"><font face="Courier New" color="#003258" size="5"><b>or4b</b></font></h3>
53 </td>
54 </tr>
55</table>
56</center>
57</div>
58<hr align="left" width="50%">
59<p>Example 1:
60<p><font face="Courier New">const bitstring c_tionde := '1001'B;</font> <br>
61<font face="Courier New">const bitstring c_sistan := '0101'B; <br>
62&nbsp;&nbsp;var bitstring v_tolvte := c_tionde or4b c_sistan;</font>
63<p>The variable v_tolvte will initially contain the value '1101'B.</p>
64<hr align="left" width="50%">
65<p>Example 2:
66<p><font face="Courier New">const hexstring c_hatso := '9'H ; <br>
67const hexstring c_felso := '5'H; <br>
68&nbsp;&nbsp;var hexstring v_alfa := c_hatso or4b c_felso;</font>
69<p>The variable v_alfa will initially contain the value 'D'H.</p>
70<hr align="left" width="50%">
71<p>Example 3:
72<p><font face="Courier New">const octstring c_zwei := 'A9'O ; <br>
73const octstring c_drei := 'F5'O; <br>
74&nbsp;&nbsp;var octstring v_vier := c_zwei or4b c_drei;</font>
75<p>The variable v_vier will initially contain the value 'FD'O.</p>
76<hr align="left" width="25%">
77<hr align="left" width="25%">
78<p><a HREF="BNF.html#bitorexpression">BNF definition</a> of <font face="Courier New">or4b</font></p>
79</body>
80</html>
This page took 0.028893 seconds and 5 git commands to generate.