method
|
![Some documentation Importance_1](https://d2vfyqvduarcvs.cloudfront.net/images/importance_1.png?1349367920)
v1_9_3_125 -
Show latest stable
-
0 notes -
Class: Set
- 1_8_6_287
- 1_8_7_72
- 1_8_7_330
- 1_9_1_378
- 1_9_2_180
- 1_9_3_125
- 1_9_3_392
- 2_1_10
- 2_2_9 (0)
- 2_4_6 (0)
- 2_5_5 (0)
- 2_6_3
- What's this?
|(enum)
public
Returns a new set built by merging the set and the elements of the given enumerable object.
Register or
log in
to add new notes.
metavida -
May 19, 2010
![Default_avatar_30](https://www.gravatar.com/avatar/b526ab2828ebed7151e14174a8d242d4?default=http://apidock.com/images/default_avatar_30.png&size=30)
0 thanks
Looking for "to the power of"?
If you’re trying to calculate 2 to the power of 2, the ^ method is not what you want. Try ** instead.
2^2 #=> 0 2^8 #=> 10 2**2 #=> 4 2**8 #=> 256