<postmodern>
how do you test non-abstract methods defined in an abstract class? sub-class it in the specs?
<postmodern>
also if you have a #each(&block : (...) ->) method and a #each() : Iterator method, how do you call the non-block-taking version of #each from the version of #each that accepts a block?
<postmodern>
i feel like `() ->` is more explicit than just ` -> `
hightower3 has quit [Ping timeout: 244 seconds]
notzmv has quit [Ping timeout: 268 seconds]
hightower3 has joined #crystal-lang
postmodern has quit [Read error: Connection reset by peer]
notzmv has joined #crystal-lang
yxhuvud has quit [Remote host closed the connection]
yxhuvud has joined #crystal-lang
<FromGitter>
<Blacksmoke16> > *<postmodern>* how do you test non-abstract methods defined in an abstract class? sub-class it in the specs? ⏎ ⏎ Yea, id define a mock implementation of it in the specs that could be used
<FromGitter>
<postmodern:matrix.org> @HertzDevil: what if the data isn't Indexable, but just a free form Iterator without a defined length?
Starfoxxes has quit [Ping timeout: 246 seconds]
Starfoxxes has joined #crystal-lang
Elouin has quit [Quit: Ping timeout (120 seconds)]
Elouin has joined #crystal-lang
<FromGitter>
<domgetter> Are there any shards for SIMD stuff like a nice wrapper around AVX2 ?
<FromGitter>
<domgetter> I'm doing some custom per-pixel filters on images, and was hoping to be able to unroll the inner loop and work on 8 pixels at a time
<FromGitter>
<domgetter> (or, more precisely 8 channels at a time)