samth changed the topic of #racket to: Racket v7.4 has been released: https://blog.racket-lang.org/2019/08/racket-v7-4.html -- Racket -- https://racket-lang.org -- https://pkgs.racket-lang.org -- Paste at http://pasterack.org
ccamel has joined #racket
camelCaser has quit [Ping timeout: 240 seconds]
tilpner has quit [Ping timeout: 265 seconds]
Lowl3v3l has quit [Ping timeout: 268 seconds]
tilpner has joined #racket
Lowl3v3l has joined #racket
badkins has quit [Remote host closed the connection]
Codaraxis has quit [Read error: Connection reset by peer]
sword865 has joined #racket
orivej has joined #racket
Trieste has quit [Ping timeout: 265 seconds]
Codaraxis has joined #racket
Codaraxis_ has joined #racket
Codaraxis__ has joined #racket
Codaraxis has quit [Ping timeout: 265 seconds]
Codaraxis_ has quit [Ping timeout: 240 seconds]
efm has quit [Read error: Connection reset by peer]
Codaraxis__ has quit [Ping timeout: 268 seconds]
efm has joined #racket
sagax has quit [Ping timeout: 245 seconds]
fanta1 has joined #racket
<theruran> what is the convention for documenting source code? I used to Elixir docs or Literate Haskell.
jcowan has left #racket [#racket]
nullman has joined #racket
<erkin> theruran: scribble
<theruran> erkin: srcdoc? seems to be the way
<ZombieChicken> scribble is the normal way to document source for Racket, and scribble/lp2 if you're wanting to do literate programming
dddddd has quit [Remote host closed the connection]
<theruran> ZombieChicken: How do you use a custom #lang for lp2 chunks? The way I found was extremely slow.
<ZombieChicken> Yeah. In my experience lp2 is cripplingly slow
<theruran> there is Brush and Hyper-literate pkgs but they are not well documented themselves
<theruran> I am not certain that scribble/srcdoc proc-doc/names will play well with #lang rosette because of the required contracts
<ZombieChicken> I can't really comment on that
<theruran> or is a contract always required
<ZombieChicken> again, I can't really comment, since I don't know
nullman has quit [Ping timeout: 240 seconds]
Codaraxis has joined #racket
keep_learning has joined #racket
keep_learning has quit [Read error: Connection timed out]
fanta1 has quit [Quit: fanta1]
sauvin has joined #racket
_whitelogger has joined #racket
_apg has joined #racket
manualcrank has quit [Quit: WeeChat 1.9.1]
sagax has joined #racket
libertyprime has joined #racket
mzan has joined #racket
fanta1 has joined #racket
libertyprime has quit [Ping timeout: 240 seconds]
libertyprime has joined #racket
endformationage has quit [Ping timeout: 240 seconds]
sarna has joined #racket
libertyprime has quit [Ping timeout: 246 seconds]
libertyprime has joined #racket
libertyprime has quit [Ping timeout: 265 seconds]
libertyprime has joined #racket
nullman has joined #racket
Trieste has joined #racket
libertyprime has quit [Ping timeout: 245 seconds]
nullman has quit [Ping timeout: 240 seconds]
nullman has joined #racket
Trieste has quit [Ping timeout: 252 seconds]
Trieste has joined #racket
ng0 has joined #racket
nullman has quit [Ping timeout: 265 seconds]
tilpner_ has joined #racket
tilpner has quit [Ping timeout: 265 seconds]
tilpner_ is now known as tilpner
libertyprime has joined #racket
mzan has quit [Ping timeout: 268 seconds]
nullman has joined #racket
aidalgol has quit [Remote host closed the connection]
sarna has quit [Ping timeout: 268 seconds]
nullman has quit [Ping timeout: 264 seconds]
nullman has joined #racket
sarna has joined #racket
sarna has left #racket [#racket]
nullman has quit [Ping timeout: 265 seconds]
nullman has joined #racket
libertyprime has quit [Quit: leaving]
mceier has quit [Ping timeout: 268 seconds]
mzan has joined #racket
mceier has joined #racket
m1dnight_ has quit [Quit: WeeChat 2.4]
m1dnight_ has joined #racket
efm has quit [Excess Flood]
efm has joined #racket
mceier has quit [Ping timeout: 276 seconds]
mceier has joined #racket
mceier has quit [Ping timeout: 268 seconds]
mceier has joined #racket
badkins has joined #racket
dddddd has joined #racket
mzan has quit [Ping timeout: 268 seconds]
mzan has joined #racket
mzan has quit [Quit: Leaving]
manualcrank has joined #racket
mzan has joined #racket
Sgeo has quit [Read error: Connection reset by peer]
Sgeo has joined #racket
Sgeo has quit [Read error: Connection reset by peer]
Sgeo has joined #racket
endformationage has joined #racket
mceier has quit [Ping timeout: 268 seconds]
nullman has quit [Ping timeout: 246 seconds]
nullman has joined #racket
mceier has joined #racket
sword865 has quit [Quit: Connection closed for inactivity]
mceier has quit [Ping timeout: 240 seconds]
mceier has joined #racket
vraid has joined #racket
mzan has quit [Ping timeout: 246 seconds]
ng0 has quit [Quit: Alexa, when is the end of world?]
nullman has quit [Ping timeout: 265 seconds]
nullman has joined #racket
mzan has joined #racket
mzan has quit [Quit: Leaving]
rgherdt has joined #racket
_apg has quit [Ping timeout: 265 seconds]
efm has quit [Remote host closed the connection]
efm has joined #racket
ng0 has joined #racket
pera has joined #racket
mzan has joined #racket
dustyweb has joined #racket
ng0 has quit [Quit: Alexa, when is the end of world?]
<dustyweb> does (match x ([(list item1 items ...) item1])) actually traverse the entire list to verify that it isn't a dotted list?
<dustyweb> that seems like it could lead to unexpected O(n^2) behavior if used to take the top item from the list
ng0 has joined #racket
rgherdt has quit [Ping timeout: 276 seconds]
juanfra has joined #racket
fanta1 has quit [Quit: fanta1]
efm has quit [Ping timeout: 252 seconds]
manualcrank has quit [Quit: WeeChat 1.9.1]
efm has joined #racket
Codaraxis has quit [Ping timeout: 240 seconds]
sauvin has quit [Ping timeout: 240 seconds]
FreeFull has joined #racket
efm has quit [Ping timeout: 265 seconds]
<friscosam> I believe there is an internal flag on pairs that says if it is a list or not. So `list?` is O(1)
<friscosam> This is possible because pairs are immutable.
<dustyweb> yeah got a response on the list... looks like it's cached
lavaflow has quit [Ping timeout: 245 seconds]
lavaflow has joined #racket
mzan has quit [Quit: Leaving]
deeglaze has quit [Remote host closed the connection]
deeglaze has joined #racket
Sgeo has quit [Read error: Connection reset by peer]
Sgeo has joined #racket
lavaflow has quit [Ping timeout: 240 seconds]
casaca has quit [Ping timeout: 268 seconds]
casaca has joined #racket
lavaflow has joined #racket
mzan has joined #racket
Fernando-Basso has joined #racket
manualcrank has joined #racket
efm has joined #racket
acarrico has quit [Ping timeout: 276 seconds]
Codaraxis has joined #racket
acarrico has joined #racket
lavaflow has quit [Ping timeout: 265 seconds]
endformationage has quit [Quit: WeeChat 2.6]
lavaflow has joined #racket
endformationage has joined #racket
hjek has joined #racket
dustyweb has quit [Ping timeout: 245 seconds]
orivej has quit [Ping timeout: 264 seconds]
evdubs has quit [Remote host closed the connection]
evdubs has joined #racket