masterbuilder has quit [Ping timeout: 245 seconds]
masterbuilder has joined #ocaml
jsoo has joined #ocaml
adrien has joined #ocaml
dh` has joined #ocaml
dh` has quit [Changing host]
dh` has joined #ocaml
bartholin has joined #ocaml
Hammdist has quit [Quit: Client closed]
Tuplanolla has joined #ocaml
waleee has joined #ocaml
Hammdist has joined #ocaml
wingsorc has quit [Remote host closed the connection]
wingsorc has joined #ocaml
waleee has quit [Ping timeout: 248 seconds]
Serpent7776 has joined #ocaml
sagax has quit [Ping timeout: 258 seconds]
dnh has joined #ocaml
rgrinberg has joined #ocaml
rgrinberg has quit [Read error: Connection reset by peer]
rgrinberg has joined #ocaml
rgrinberg has quit [Remote host closed the connection]
rgrinberg has joined #ocaml
dhil has joined #ocaml
rgrinberg has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tizoc has quit [Quit: Coyote finally caught me]
tizoc has joined #ocaml
bartholin has quit [Quit: Leaving]
azimut has joined #ocaml
uncomfy has joined #ocaml
rgrinberg has joined #ocaml
mbuf has joined #ocaml
pieguy128 has quit [Ping timeout: 246 seconds]
rgrinberg has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pieguy128 has joined #ocaml
dnh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rgrinberg has joined #ocaml
rgrinberg has quit [Client Quit]
kurfen has quit [Ping timeout: 240 seconds]
kurfen has joined #ocaml
dnh has joined #ocaml
Serpent7776 has quit [Ping timeout: 252 seconds]
random-jellyfish has quit [Ping timeout: 245 seconds]
Serpent7776 has joined #ocaml
<Ankhers>
If I dune new project foo, and I add the bin/bar.ml file, how do I reference that module inside of main.ml
<companion_cube>
just `Bar` (if main.ml is in bin/ too)
uncomfy has quit [Remote host closed the connection]
bartholin has joined #ocaml
serpent has joined #ocaml
Serpent7776 has quit [Ping timeout: 252 seconds]
<discocaml>
<struktured> Base/Core question: anyone here know what happened to the `add` and `add_multi` function as previously defined in the application of the `Comparable.Make` functor? It looks like the module signature dropped all forms of mutation. Docs of existing functor here: https://ocaml.org/p/core/v0.16.1/doc/Core/Comparable/Make/Map/index.html
bibi_ has joined #ocaml
<discocaml>
<struktured> Figured it out. I just need to change `Foo.Map.add_multi` to just `Map.add_multi`. Not sure why it changed in the first place though, maybe related to base/core refactorings.
<discocaml>
<struktured> Figured it out. I need to change `Foo.Map.add_multi` to just `Map.add_multi`. Not sure why it changed in the first place though, maybe related to base/core refactorings.
<discocaml>
<struktured> Now I'm being told to switch from `Command` to `Command_unix` but don't see that module anywhere. Fun times.
<discocaml>
<anurag_soni> If you haven't seen this already, Janestreet publishes changelogs for their packages now. The release notes for 0.16 mentioned the Map module removing creator/accessor signatures. `Command_unix` is part of `core_unix` now since unix related items were split off from core. https://github.com/janestreet/core_unix
<discocaml>
<struktured> Thanks, the changelog is pretty clutch here!