wu_ng has quit [Read error: Connection reset by peer]
wu_ng has joined #ocaml
wu_ng has quit [Read error: Connection reset by peer]
brunoro has quit [Ping timeout: 252 seconds]
axiles has quit [Ping timeout: 260 seconds]
ggole_ has joined #ocaml
wu_ng has joined #ocaml
brunoro has joined #ocaml
ggole has quit [Ping timeout: 265 seconds]
conrad4 has joined #ocaml
ggole__ has joined #ocaml
ggole_ has quit [Ping timeout: 260 seconds]
jwatzman|work has joined #ocaml
conrad4 has quit [Ping timeout: 256 seconds]
zpe has quit [Remote host closed the connection]
voglerr has joined #ocaml
zpe has joined #ocaml
ggole_ has joined #ocaml
wu_ng has quit [Ping timeout: 276 seconds]
ggole__ has quit [Ping timeout: 265 seconds]
wu_ng has joined #ocaml
axiles has joined #ocaml
dmi3y has joined #ocaml
dmi3y has quit [Client Quit]
FreeBirdLjj has joined #ocaml
ggole__ has joined #ocaml
dmi3y has joined #ocaml
ggole_ has quit [Ping timeout: 256 seconds]
ggole has joined #ocaml
manizzle has joined #ocaml
ggole__ has quit [Ping timeout: 250 seconds]
voglerr has quit [Remote host closed the connection]
Cypi_ is now known as Cypi
malina has quit [Ping timeout: 265 seconds]
A2` has joined #ocaml
kakadu has joined #ocaml
fedruantine has quit [Quit: client exited: Ex-Chat]
zpe has quit [Remote host closed the connection]
zpe has joined #ocaml
kakadu has quit [Remote host closed the connection]
zpe has quit [Ping timeout: 260 seconds]
zpe has joined #ocaml
kakadu has joined #ocaml
zpe has quit [Remote host closed the connection]
zpe has joined #ocaml
zpe has quit [Read error: No route to host]
zpe has joined #ocaml
ocabot has joined #ocaml
zpe has quit [Remote host closed the connection]
zpe has joined #ocaml
zpe has quit [Ping timeout: 260 seconds]
nickapos has joined #ocaml
jg_ has quit [Ping timeout: 252 seconds]
djellemah has joined #ocaml
voglerr has joined #ocaml
AlexDenisov has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
voglerr has quit [Ping timeout: 260 seconds]
wu_ng has quit [Ping timeout: 276 seconds]
wu_ng has joined #ocaml
_andre has joined #ocaml
nojb has joined #ocaml
brunoro has quit [Ping timeout: 256 seconds]
jg_ has joined #ocaml
FreeBirdLjj has quit [Remote host closed the connection]
conrad4 has joined #ocaml
dhil has joined #ocaml
rand__ has joined #ocaml
conrad4 has quit [Ping timeout: 256 seconds]
mpenet has joined #ocaml
mpenet has left #ocaml [#ocaml]
Mercuria1Alchemi has quit [Remote host closed the connection]
Mercuria1Alchemi has joined #ocaml
silver has joined #ocaml
fedruantine has joined #ocaml
ode has joined #ocaml
voglerr has joined #ocaml
jao has joined #ocaml
FreeBirdLjj has joined #ocaml
nicooo has joined #ocaml
nicoo has quit [Ping timeout: 260 seconds]
brunoro has joined #ocaml
voglerr has quit [Remote host closed the connection]
silver has quit [Quit: rakede]
AlexDenisov has joined #ocaml
malina has joined #ocaml
voglerr has joined #ocaml
TarV has joined #ocaml
TarV is now known as TarVanimelde
al-damiri has joined #ocaml
ode has quit [Ping timeout: 245 seconds]
manizzle has quit [Ping timeout: 260 seconds]
zpe has joined #ocaml
alienbot has quit [Read error: Connection reset by peer]
ccmaru has joined #ocaml
ccmaru has quit [Quit: Leaving]
AltGr has joined #ocaml
manizzle has joined #ocaml
zpe_ has joined #ocaml
zpe has quit [Ping timeout: 276 seconds]
<demonimin>
ocaml maps are missing a method to find the smallest binding whose key is equal or greater to a given key, without looping through the entire map
<demonimin>
it's not in ocaml-containers or asetmap either
<flux>
demonimin, did you look at Map.S.split?
<demonimin>
flux: yes, but it traverses the entire map
AlexDenisov has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<octachron>
demonimin: you may want to correct the testsuite failure in your patch ( the failures come from the changes in the signature of maps and sets )
jwatzman|work has quit [Quit: jwatzman|work]
nomicflux has joined #ocaml
voglerr has quit [Remote host closed the connection]
ygrek has quit [Ping timeout: 260 seconds]
Onemorenickname has joined #ocaml
voglerr has joined #ocaml
AltGr has left #ocaml [#ocaml]
<Onemorenickname>
Hi
<Onemorenickname>
Has someone got the problem with Str.search_forward that the regexp "(.)*" matches nothing ?
<flux>
onemorenickname, no, but I do advice you to use some other regexp library than the ildesigned Str one from the standard library :/
<Onemorenickname>
flux : I know. I had to make a wrapper
<Onemorenickname>
But I don't know how to install modules properly actually
michbad has joined #ocaml
<Onemorenickname>
(I think the regexp Str library is intentionally badly designed : you can't use invisible states /and/ exception without having bad intentions)
voglerr has quit [Ping timeout: 256 seconds]
slash^ has joined #ocaml
<flux>
onemorenickname, str is even more devious than that
<Onemorenickname>
(actually, it looks like ocaml-re is /already/ installed)
<flux>
onemorenickname, it's thread-unsafe, even the functions that look like they are safe from their interface
<Onemorenickname>
(how can I find the doc ?)
<Onemorenickname>
flux, invisible state implies thread unsage
<flux>
ls -l $(ocamlfind query ocaml-re)/*.mli
<Onemorenickname>
unsafe *
<Onemorenickname>
but i've been told that it's not a problem because ocaml is monothread
<Onemorenickname>
flux : Can I find the doc in a more suitable form ?
<flux>
well, until you do use threads..
<Onemorenickname>
(thanks for the command though)
voglerr has joined #ocaml
<flux>
onemorenickname, probably google.. there's also one opam project that tries to generate those docs into some nice format
<octachron>
Onemorenickname: "(.)*" does match "(a)" on my side. Did you want {|\(.\)*|} ?
<Onemorenickname>
octachron, retrospectively, I wanted "\(.\)*" (well, something more complicated than that initially). it's the first time I see a regex syntax where parenthesis need to be escaped
<Onemorenickname>
(well, escaped in order for them to be capturing)
<Onemorenickname>
flux : i tried google, but i guess i'll go with the .mli, thanks :)
<octachron>
Onemorenickname: also beware that with non-raw string it should be "\\(.\\)*"
voglerr has quit [Ping timeout: 260 seconds]
<Onemorenickname>
octachron, indeed :)
dario9 has joined #ocaml
larhat has quit [Ping timeout: 245 seconds]
citrusybutter has joined #ocaml
shinnya has quit [Ping timeout: 260 seconds]
citrusybutter has quit [Client Quit]
whisperedcigar has joined #ocaml
brunoro has quit [Ping timeout: 250 seconds]
pierpa has joined #ocaml
gjaldon has joined #ocaml
eh_eff has joined #ocaml
slash^ has quit [Read error: Connection reset by peer]
dhil has quit [Ping timeout: 250 seconds]
fraggle_ has quit [Ping timeout: 250 seconds]
rgrinberg has quit [Ping timeout: 244 seconds]
conrad4 has joined #ocaml
dhil has joined #ocaml
conrad4 has quit [Ping timeout: 276 seconds]
<freehck>
People, what part of core shall I load to use Sexplib extensions like "type xxx = yyy with sexp"?
<freehck>
I tried `#require "camlp4"` but it doesn't work.
<freehck>
> type some_type = int * string list with sexp;
<freehck>
Error: Parse error: [str_item] or ";;" expected (in [top_phrase])
<gjaldon>
freehck: I still get a Syntax error after running that
<reynir>
Does 4.01.0 even support ppx?
ode has quit [Ping timeout: 250 seconds]
<freehck>
reynir: no, but it seems that opam has installed me an old version of core which is distributed with camlp4 extensions, not ppx.
th5 has quit [Ping timeout: 244 seconds]
<freehck>
gjaldon: #require "core.top" may help also.
<gjaldon>
freehck: #require "core.top" doesn't work too. is there some order I should follow? Is it ok to #require after `open Core.Std`? new to OCaml here
ode has joined #ocaml
<freehck>
gjaldon: I dont know, same situation. Your question was just similar to my own just 10 minutes ago. :)
<gjaldon>
freehck: ok thanks anyway :)
noddy has quit [Ping timeout: 245 seconds]
brunoro has joined #ocaml
brunoro has quit [Ping timeout: 256 seconds]
Algebr has joined #ocaml
michbad has quit [Remote host closed the connection]
larhat has joined #ocaml
nomicflux has quit [Quit: nomicflux]
ode has quit [Ping timeout: 260 seconds]
larhat has quit [Read error: Connection reset by peer]
larhat has joined #ocaml
eh_eff has quit [Ping timeout: 260 seconds]
ryanartecona has joined #ocaml
kamog has joined #ocaml
jrslepak_ is now known as jrslepak
Algebr has quit [Remote host closed the connection]
agarwal1975 has quit [Ping timeout: 256 seconds]
Algebr has joined #ocaml
Onemorenickname has quit [Read error: Connection reset by peer]
manizzle has joined #ocaml
rgrinberg has joined #ocaml
Orion3k has joined #ocaml
gjaldon has quit []
manizzle has quit [Ping timeout: 256 seconds]
eh_eff has joined #ocaml
noddy has joined #ocaml
dario9 has quit [Quit: Konversation terminated!]
malc_ has quit [Remote host closed the connection]
marsam has joined #ocaml
blahblahblah has joined #ocaml
noddy has quit [Ping timeout: 256 seconds]
richi238 is now known as richi235
kakadu has quit [Quit: Konversation terminated!]
marsam has quit [Read error: Connection reset by peer]
marsam has joined #ocaml
brunoro has joined #ocaml
dhil has quit [Ping timeout: 265 seconds]
ggole_ has joined #ocaml
brunoro has quit [Ping timeout: 250 seconds]
ggole has quit [Ping timeout: 265 seconds]
octachron has joined #ocaml
blahblahblah has left #ocaml [#ocaml]
conrad4 has joined #ocaml
conrad4 has quit [Ping timeout: 261 seconds]
veggie_ has quit [Ping timeout: 265 seconds]
jg__ has quit [Ping timeout: 256 seconds]
veggie_ has joined #ocaml
mrvn has quit [Ping timeout: 244 seconds]
malina has quit [Ping timeout: 256 seconds]
mrvn has joined #ocaml
smondet has joined #ocaml
kakadu has joined #ocaml
Denommus has joined #ocaml
_andre has quit [Quit: leaving]
ryanartecona has quit [Quit: ryanartecona]
ggole_ has quit []
marsam has quit [Ping timeout: 252 seconds]
jnavila has joined #ocaml
ryanartecona has joined #ocaml
marsam has joined #ocaml
brunoro has joined #ocaml
brunoro has quit [Ping timeout: 256 seconds]
marsam has quit [Ping timeout: 260 seconds]
fraggle_ has joined #ocaml
jnavila has quit [Ping timeout: 256 seconds]
marsam has joined #ocaml
ode has joined #ocaml
veggie_ has quit [Ping timeout: 260 seconds]
noddy has joined #ocaml
octachron has quit [Quit: Leaving]
ode has quit [Ping timeout: 256 seconds]
whisperedcigar has quit [Quit: WeeChat 1.5]
manizzle has joined #ocaml
manizzle has quit [Remote host closed the connection]
madroach has quit [Ping timeout: 276 seconds]
madroach has joined #ocaml
brunoro has joined #ocaml
veggie_ has joined #ocaml
AlexDenisov has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
brunoro has quit [Ping timeout: 265 seconds]
conrad4 has joined #ocaml
conrad4 has quit [Ping timeout: 256 seconds]
jnavila has joined #ocaml
agarwal1975 has joined #ocaml
ryanartecona has quit [Quit: ryanartecona]
eh_eff has quit [Ping timeout: 256 seconds]
rand__ has quit [Quit: leaving]
ryanartecona has joined #ocaml
Algebr has quit [Ping timeout: 260 seconds]
marsam has quit [Read error: Connection reset by peer]
rgrinberg has quit [Ping timeout: 256 seconds]
ode has joined #ocaml
brunoro has joined #ocaml
brunoro has quit [Ping timeout: 260 seconds]
jnavila has quit [Remote host closed the connection]
kamog has quit [Remote host closed the connection]
johnelse has quit [Ping timeout: 260 seconds]
kakadu has quit [Remote host closed the connection]
johnelse has joined #ocaml
<tizoc>
merlin breaks for me when I add lwt.ppx to the list of packages, has this happened to anyone else?
jao has quit [Remote host closed the connection]
Denommus has quit [Quit: going home]
jao has joined #ocaml
eh_eff has joined #ocaml
shinnya has joined #ocaml
<copy`>
tizoc: I don't have that problem
<tizoc>
copy`: it seems the problem is my ppx_lwt binary, not merlin
<tizoc>
it is weird because I don't remember upgrading or reinstalling anything, not sure what changed
ode has quit [Ping timeout: 276 seconds]
agarwal1975 has quit [Quit: agarwal1975]
Mercuria1Alchemi has quit [Ping timeout: 256 seconds]
agarwal1975 has joined #ocaml
brunoro has joined #ocaml
smondet has quit [Ping timeout: 260 seconds]
michbad has joined #ocaml
brunoro has quit [Ping timeout: 260 seconds]
conrad4 has joined #ocaml
conrad4 has quit [Ping timeout: 265 seconds]
Simn has quit [Read error: Connection reset by peer]