mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Initial mobile website check in
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<root>
|
||||
<name>!= (inequality)</name>
|
||||
|
||||
<category>Control</category>
|
||||
|
||||
<subcategory>Relational Operators</subcategory>
|
||||
|
||||
<usage>Web & Application</usage>
|
||||
|
||||
<example>
|
||||
<image></image>
|
||||
<code>
|
||||
int a = 22;
|
||||
int b = 23;
|
||||
if(a != b) {
|
||||
println("variable a is not equal to variable b");
|
||||
}
|
||||
</code>
|
||||
</example>
|
||||
|
||||
<description>
|
||||
Determines if one expression is not equivalent to another.
|
||||
</description>
|
||||
|
||||
<syntax>
|
||||
<c>value1</c> != <c>value2</c>
|
||||
</syntax>
|
||||
|
||||
<parameter>
|
||||
<label>value1</label>
|
||||
<description>int, float, char, byte, boolean, String</description>
|
||||
</parameter>
|
||||
|
||||
<parameter>
|
||||
<label>value2</label>
|
||||
<description>int, float, char, byte, boolean, String</description>
|
||||
</parameter>
|
||||
|
||||
<returns></returns>
|
||||
|
||||
<related>
|
||||
> (greater than)
|
||||
< (less than)
|
||||
>= (greater than or equal to)
|
||||
<= (less than or equal to)
|
||||
== (equality)
|
||||
</related>
|
||||
|
||||
<availability>1.0</availability>
|
||||
|
||||
<type>Operator</type>
|
||||
|
||||
<partof>PDE</partof>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</root>
|
||||
Reference in New Issue
Block a user