badkins has quit [Remote host closed the connection]
X-Scale has quit [Ping timeout: 256 seconds]
littlebobeep has quit [Ping timeout: 240 seconds]
X-Scale has joined #racket
badkins has joined #racket
littlebobeep has joined #racket
badkins has quit [Ping timeout: 250 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
ur5us has quit [Ping timeout: 255 seconds]
ttree has joined #racket
ttree has quit [Quit: Leaving]
ttree has joined #racket
aidalgol has quit [Ping timeout: 246 seconds]
aidalgol_ has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
aidalgol_ is now known as aidalgol
littlebo1eep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
littlebo1eep has quit [Ping timeout: 240 seconds]
littlebo1eep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
ur5us has joined #racket
badkins has joined #racket
littlebo1eep has quit [Ping timeout: 240 seconds]
badkins has quit [Ping timeout: 255 seconds]
littlebobeep has joined #racket
yagamisato has quit [Ping timeout: 258 seconds]
yagamisato has joined #racket
yagamisato has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 244 seconds]
jao has quit [Ping timeout: 240 seconds]
ur5us has quit [Quit: Leaving]
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
tumdum has joined #racket
skapata has quit [Ping timeout: 260 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 255 seconds]
skapata has joined #racket
skapata has quit [Changing host]
skapata has joined #racket
skapata has quit [Ping timeout: 258 seconds]
ttree has quit [Ping timeout: 240 seconds]
skapata has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
tumdum has quit [Ping timeout: 258 seconds]
littlebobeep has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 244 seconds]
littlebobeep has quit [Ping timeout: 240 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 255 seconds]
littlebobeep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
littlebo1eep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
littlebo1eep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
littlebo1eep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
littlebo1eep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
skapata has quit [Quit: Ĝis.]
littlebobeep has joined #racket
srji has joined #racket
littlebo1eep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
littlebo1eep has quit [Ping timeout: 240 seconds]
gproto23 has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
tumdum has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 244 seconds]
gproto23 has quit [Remote host closed the connection]
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
badkins has joined #racket
badkins has quit [Ping timeout: 255 seconds]
littlebobeep has quit [Ping timeout: 240 seconds]
littlebobeep has joined #racket
jao has joined #racket
littlebo1eep has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
monkey_ has joined #racket
littlebo1eep has quit [Ping timeout: 240 seconds]
tumdum has quit [Ping timeout: 255 seconds]
badkins has joined #racket
littlebobeep has joined #racket
badkins has quit [Ping timeout: 244 seconds]
Avichi has joined #racket
Avichi has quit [Quit: Client closed]
Avichi has joined #racket
littlebobeep has quit [Ping timeout: 240 seconds]
ttree has joined #racket
kengruven has quit [Quit: Leaving.]
badkins has joined #racket
badkins has quit [Ping timeout: 255 seconds]
dTal is now known as CodependentChick
CodependentChick is now known as dTal
monkey_ has quit [Ping timeout: 240 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 250 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 256 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
badkins has joined #racket
tumdum has joined #racket
badkins has quit [Ping timeout: 255 seconds]
notzmv has quit [Ping timeout: 244 seconds]
tumdum has quit [Ping timeout: 260 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 246 seconds]
badkins has joined #racket
badkins has quit [Ping timeout: 255 seconds]
skapata has joined #racket
skapata has joined #racket
skapata has quit [Changing host]
msiism has joined #racket
<
msiism>
I've just run a little test on which of two ways of checking whether a list is empty and then returning the empty list would be faster.
<
msiism>
Surprisingly, there was no meaningful difference.
<
msiism>
So, this is `(eq? lst '()) '()` versus `(empty? lst) empty`.
<
msiism>
Now, I'm trying to understand why the first one is not noticably faster.
kengruven has joined #racket
<
bremner>
msiism: that seems like the kind of optimization you can trust the compiler to handle?
<
msiism>
Okay, I see. So, is `empty?` implemented as `(eq? lst '())`, actually?
<
msiism>
Oh, I could look that up, actually.
<
bremner>
it could be. It might do some typechecking also.
<
bremner>
rudybot: eval (empty? 42)
<
rudybot>
bremner: your sandbox is ready
<
rudybot>
bremner: ; Value: #f
badkins has joined #racket
<
bremner>
perhaps so.
badkins has quit [Ping timeout: 244 seconds]
<
msiism>
Hm… I'm not able to locate the defintion of `empty?` at this point. But it's not too important.
notzmv has joined #racket
<
bremner>
it's defined as equivalent to null?
<
msiism>
Yeah, that's what the reference says.
<
msiism>
Just seeing it now.
badkins has joined #racket
ASau has quit [Read error: Connection reset by peer]
badkins has quit [Remote host closed the connection]
jao has quit [Ping timeout: 246 seconds]
jao has joined #racket
msiism has left #racket [Konversation vaporized.]
aidalgol has quit [Ping timeout: 246 seconds]
badkins has joined #racket
aidalgol has joined #racket
badkins has quit [Ping timeout: 244 seconds]
jao has quit [Ping timeout: 258 seconds]
jao has joined #racket