<discocaml_>
<wiss94> Hello, I have a module graph with a node that is a abstract type but I want it to be a real type : float * float * bool but I don't how to make it.
<discocaml_>
<wiss94>
<discocaml_>
<wiss94> Thanks for help
<discocaml_>
<wiss94> ```
<discocaml_>
<wiss94> module type Graph =
<discocaml_>
<wiss94> sig
<discocaml_>
<wiss94> type node
<discocaml_>
<wiss94> module NodeSet : Set.S with type elt = node
<discocaml_>
<wiss94> type graph
<discocaml_>
<wiss94> val empty : graph
<discocaml_>
<wiss94> val is_empty : graph -> bool
<discocaml_>
<wiss94> val add_node : node -> graph -> graph
<discocaml_>
<wiss94> type graph = NodeSet.t NodeMap.t
<discocaml_>
<wiss94>
<discocaml_>
<wiss94> let empty = NodeMap.empty;;
adrien has quit [Ping timeout: 265 seconds]
adrien has joined #ocaml
reynir has quit [Quit: WeeChat 3.0]
adrien has quit [Ping timeout: 260 seconds]
adrien has joined #ocaml
semarie has quit [Quit: quit]
semarie has joined #ocaml
Haudegen has joined #ocaml
emp has joined #ocaml
rgrinberg has joined #ocaml
YuGiOhJCJ has quit [Quit: YuGiOhJCJ]
Mister_Magister has quit [Ping timeout: 244 seconds]
Mister_Magister has joined #ocaml
rgrinberg has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
rgrinberg has joined #ocaml
<discocaml_>
<yawaramin> answered in #beginners
masterbuilder has quit [Remote host closed the connection]
rgrinberg has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
rgrinberg has joined #ocaml
mbuf has joined #ocaml
tomku has quit [Ping timeout: 252 seconds]
Mister_Magister_ has joined #ocaml
Mister_Magister has quit [Ping timeout: 244 seconds]
Mister_Magister_ is now known as Mister_Magister
<discocaml_>
<marisakirisame> I want to steal a bit off ocaml's int63 for my tagging purpose. should i steal the leftmost or the rightmost bit (to minimize conversion between the two int, and getting the tag)?
rgrinberg has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
<discocaml_>
<Kali> please don't paste code blocks in this channel, because it is bridged to IRC which must send each newline as an individual message
rgrinberg has joined #ocaml
ygrek has joined #ocaml
euphores has quit [Quit: Leaving.]
euphores has joined #ocaml
alfiee has quit [Ping timeout: 252 seconds]
alfiee has joined #ocaml
mbuf has quit [Quit: Leaving]
ionut_f has joined #ocaml
rgrinberg has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
mro has joined #ocaml
ygrek has quit [Remote host closed the connection]
rgrinberg has joined #ocaml
mro has quit [Ping timeout: 252 seconds]
ionut_f has quit [Remote host closed the connection]
rgrinberg has quit [Quit: My Unrecognized Mac has gone to sleep. ZZZzzz…]
rgrinberg has joined #ocaml
bartholin has quit [Quit: Leaving]
dh` has joined #ocaml
accordvenom has quit [Quit: leaving]
Everything has joined #ocaml
Haudegen has quit [Quit: Bin weg.]
<discocaml_>
<poselsky> Is it possible to run `dune utop` with native code instead of bytecode? I'm having some issues with bytecode and dynlinked libs on windows.