Ruby Operators : Operators « Language Basics « Ruby

Home
Ruby
1.ActiveRecord
2.Array
3.CGI
4.Class
5.Collections
6.Database
7.Date
8.Design Patterns
9.Development
10.File Directory
11.GUI
12.Hash
13.Language Basics
14.Method
15.Network
16.Number
17.Rails
18.Range
19.Reflection
20.Statement
21.String
22.Threads
23.Time
24.Tk
25.Unit Test
26.Windows Platform
27.XML
Ruby » Language Basics » Operators 




Ruby Operators


Operator    Description 
[ ]         Array reference
[ ]=        Array element set
**          Exponentiation
!           Not
~           Complement
+           Unary plus
-           Minus
*           Multiply
/           Divide
%           Modulo
+           Plus
-           Minus
>>          Right shift
<<          Left shift
&           Bitwise And
^           Bitwise exclusive Or (Xor)
|           Regular Or
            Comparison operators:
<=          Less than or equal to
<           Less than
>           Greater than
>=          Greater than or equal to
            Equality and pattern match operators:
<=>         Less than, equal to, greater than
==          Equal to
===         Tests equality in a when clause of a case statement
!=          Not equal to
=~          Regular expression pattern match
&&          Logical And
||          Logical Or
..          Inclusive range
...         Exclusive range
?           Ternary if
:           Else
            Assignment
=           Normal assign
%=          Modulus and assign
/=          Divide and assign
-=          Subtract and assign
+=          Add and assign
*=          Multiply and assign
**=         Exponent and assign
defined?    True if symbol defined
not         Logical negation
and         Logical composition
or   

 














Related examples in the same category
1.chain statements together.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.