Skip to content

Commit 0172980

Browse files
makenowjustAry Borenszweig
authored and
Ary Borenszweig
committedDec 15, 2016
Not include Enumerable directly
because Indexable includes Enumerable
1 parent fae6cc4 commit 0172980

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed
 

‎src/bit_array.cr

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
# ba # => "BitArray[101010101010]"
1616
# ba[2] # => true
1717
struct BitArray
18-
include Enumerable(Bool)
1918
include Indexable(Bool)
2019

2120
# The number of bits the BitArray stores

‎src/tuple.cr

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
# tuple # => {1, "hello", 'x'} (Tuple(Int32, String, Char))
6363
# ```
6464
struct Tuple
65-
include Enumerable(Union(*T))
6665
include Indexable(Union(*T))
6766
include Comparable(Tuple)
6867

0 commit comments

Comments
 (0)
Please sign in to comment.