companion_cube changed the topic of #ocaml to: Discussion about the OCaml programming language | http://www.ocaml.org | OCaml 5.2.0 released: https://ocaml.org/releases/5.2.0 | Try OCaml in your browser: https://try.ocamlpro.com | Public channel logs at https://libera.irclog.whitequark.org/ocaml/
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 245 seconds]
Inline has joined #ocaml
Haudegen has quit [Quit: Bin weg.]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 272 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 260 seconds]
hsw has joined #ocaml
Tuplanolla has quit [Quit: Leaving.]
agentcasey has quit [Remote host closed the connection]
agentcasey has joined #ocaml
euphores has quit [Ping timeout: 252 seconds]
alfiee has joined #ocaml
euphores has joined #ocaml
alfiee has quit [Ping timeout: 260 seconds]
agentcasey has quit [Quit: ZNC 1.10.x-git-27-bfd731cf - https://znc.in]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 248 seconds]
Inline has quit [Ping timeout: 244 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 244 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 244 seconds]
Serpent7776 has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 244 seconds]
wbooze has joined #ocaml
kurfen has quit [Ping timeout: 252 seconds]
kurfen has joined #ocaml
pi3ce has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
pi3ce has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 244 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 260 seconds]
Haudegen has joined #ocaml
olle has joined #ocaml
bartholin has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 265 seconds]
bartholin has quit [Quit: Leaving]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 272 seconds]
wbooze has quit [Ping timeout: 244 seconds]
dh` has quit [Read error: Connection reset by peer]
dh` has joined #ocaml
caasih has quit [Ping timeout: 244 seconds]
caasih has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 248 seconds]
Haudegen has quit [Quit: Bin weg.]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
alfiee has joined #ocaml
Haudegen has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
myrkraverk_ has joined #ocaml
myrkraverk has quit [Ping timeout: 260 seconds]
<discocaml> <gooby_diatonic> Can you do something like `opam switch create ... 5.2.0+statmemprof+options ocaml-option-flambda`? Last I tried I think it didn't have either statmemprof or flambda but I might've been mistaken, just thought I'd check before making yet another switch (they take a bit to compile)
landonf has quit [Quit: ZNC - http://znc.sourceforge.net]
<octachron> `opam switch create 5.3.0+flambda ocaml-variants.5.3.0+options ocaml-option-flambda`
<discocaml> <gooby_diatonic> Mmm I'd use 5.3.0 but when I pinned the patched memstat it was trying to degrade it to 5.2.1 so that's why I went with 5.2
<discocaml> <gooby_diatonic> But I'll try again, iirc there were two patches and I used one of them, maybe the other one works fine with 5.3
<discocaml> <gooby_diatonic> Ah, I meant to say memtrace, not memstat
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 245 seconds]
<discocaml> <gooby_diatonic> I was using a wrong branch it seems, works fine with 5.3, thanks
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
olle has quit [Ping timeout: 248 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 244 seconds]
Serpent7776 has quit [Ping timeout: 244 seconds]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 245 seconds]
dawids has joined #ocaml
dawids has quit [Client Quit]
Everything has joined #ocaml
wbooze has joined #ocaml
Haudegen has quit [Quit: Bin weg.]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 268 seconds]
remexre has quit [Ping timeout: 252 seconds]
jusensei2 has quit [Quit: The Lounge - https://thelounge.chat]
wbooze has quit [Ping timeout: 244 seconds]
remexre has joined #ocaml
remexre has quit [Ping timeout: 245 seconds]
remexre has joined #ocaml
Haudegen has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 265 seconds]
bartholin has joined #ocaml
<discocaml> <eduardorfs> The kind check happens before constraints
<discocaml> <eduardorfs> ```ocaml
<discocaml> <eduardorfs> type 'k t = [> 'a ] as 'k constraint 'a = [ `a ]
<discocaml> <eduardorfs> ```
<discocaml> <eduardorfs> I think no one will ever hit the issue above, but it's kind of nice that you can workaround it.
<discocaml> <eduardorfs>
<discocaml> <eduardorfs> ```ocaml
<discocaml> <eduardorfs> type ('a, 'b) seq = 'b
<discocaml> <eduardorfs> type 'a u = [ `a ] as 'a
<discocaml> <eduardorfs> type 'k t = ('a u, ([> 'a ] as 'k)) seq
<discocaml> <eduardorfs> ```
<discocaml> <eduardorfs> I think no one will ever hit the issue above, but it's kind of nice that you can workaround it.
<discocaml> <eduardorfs> ```ocaml
<discocaml> <eduardorfs> type ('a, 'b) seq = 'b
<discocaml> <eduardorfs> type 'a u = [ `a ] as 'a
<discocaml> <eduardorfs> type 'k t = ('a u, ([> 'a ] as 'k)) seq
<discocaml> <eduardorfs> ```
JuanDaugherty has joined #ocaml
Serpent7776 has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
wickedshell has quit [Ping timeout: 260 seconds]
hwj has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 272 seconds]
hwj has quit [Quit: hwj]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 248 seconds]
euphores has quit [Ping timeout: 252 seconds]
euphores has joined #ocaml
Everything has quit [Quit: leaving]
JuanDaugherty has quit [Quit: praxis.meansofproduction.biz (juan@acm.org)]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
wickedshell has joined #ocaml
tremon has joined #ocaml
bartholin has quit [Quit: Leaving]
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
remexre has quit [Remote host closed the connection]
Serpent7776 has quit [Ping timeout: 260 seconds]
alfiee has joined #ocaml
remexre has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
remexre has quit [Ping timeout: 252 seconds]
mange has joined #ocaml
Tuplanolla has joined #ocaml
alfiee has joined #ocaml
alfiee has quit [Ping timeout: 272 seconds]
remexre has joined #ocaml
remexre has quit [Ping timeout: 260 seconds]
remexre has joined #ocaml