We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent d21fba0 commit 85220f3Copy full SHA for 85220f3
opal/corelib/numeric.rb
@@ -195,6 +195,14 @@ def >>(count)
195
`self >> #{count.to_int}`
196
end
197
198
+ def [](bit)
199
+ bit = Opal.coerce_to! bit, Integer, :to_int
200
+ min = -(2**30)
201
+ max = (2**30) - 1
202
+
203
+ `(#{bit} < #{min} || #{bit} > #{max}) ? 0 : (self >> #{bit}) % 2`
204
+ end
205
206
def +@
207
`+self`
208
spec/opal/rubyspecs
@@ -18,6 +18,7 @@ core/fixnum/abs_spec
18
core/fixnum/case_compare_spec
19
core/fixnum/comparison_spec
20
core/fixnum/equal_value_spec
21
+core/fixnum/element_reference_spec
22
core/fixnum/even_spec
23
core/fixnum/gt_spec
24
core/fixnum/gte_spec
0 commit comments