dnh has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rgrinberg has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chrisz has quit [Ping timeout: 260 seconds]
chrisz has joined #ocaml
rgrinberg has joined #ocaml
waleee has quit [Ping timeout: 256 seconds]
genpaku has quit [Remote host closed the connection]
deadmarshal has quit [Remote host closed the connection]
genpaku has joined #ocaml
Techcable has quit [Ping timeout: 268 seconds]
mbuf has joined #ocaml
deadmarshal has joined #ocaml
troydm has quit [Ping timeout: 268 seconds]
xd1le has joined #ocaml
bgs has joined #ocaml
Techcable has joined #ocaml
Haudegen has joined #ocaml
rgrinberg has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bgs has quit [Remote host closed the connection]
lisbeths has quit [Quit: Connection closed]
troydm has joined #ocaml
Serpent7776 has joined #ocaml
random-jellyfish has joined #ocaml
jao has quit [Ping timeout: 260 seconds]
calvnce has joined #ocaml
mro has joined #ocaml
hsw_ has joined #ocaml
hsw has quit [Ping timeout: 248 seconds]
Serpent7776 has quit [Ping timeout: 240 seconds]
calvnce has quit [Quit: Ping timeout (120 seconds)]
random-jellyfish has quit [Quit: Client closed]
mro has quit [Remote host closed the connection]
mro has joined #ocaml
mro has quit [Ping timeout: 240 seconds]
mro has joined #ocaml
spip has quit [Read error: Connection reset by peer]
spip has joined #ocaml
Serpent7776 has joined #ocaml
mro has quit [Ping timeout: 268 seconds]
keyboard has joined #ocaml
mro has joined #ocaml
azimut has quit [Remote host closed the connection]
azimut has joined #ocaml
dnh has joined #ocaml
mro has quit [Remote host closed the connection]
rwmjones_ is now known as rwmjones
mro has joined #ocaml
calvnce has joined #ocaml
mro has quit [Quit: Leaving...]
neiluj has joined #ocaml
<neiluj>
Hello! How do you get a pointer to the i-th array for an array of arrays? because matrix.(i) gives the i-th row, not a pointer to the rows starting from index i
calvnce has quit [Ping timeout: 260 seconds]
olle has joined #ocaml
szkl has quit [Quit: Connection closed for inactivity]
<neiluj>
hmm, going to use bigstrings
bartholin has joined #ocaml
random-jellyfish has joined #ocaml
bartholin has quit [Quit: Leaving]
calvnce has joined #ocaml
wingsorc has quit [Ping timeout: 240 seconds]
calvnce has quit [Ping timeout: 260 seconds]
calvnce has joined #ocaml
Haudegen has quit [Quit: Bin weg.]
<Fardale>
neiluj: there is not really pointer in OCaml. What do you want to do with such pointer?
<neiluj>
just to share the reading of a buffer to some processes, hence they need a pointer to a given segment of the buffer
<neiluj>
what is the difference between type 'a and 'b? is it possible to assign to 'a an abstract type? maybe not for 'b?
<neiluj>
it also seems that bigstringaf does some operations faster like blit, also exposes memcmp... but works only for 1D byte arrays, which can't be casted to 'a elements without using Obj.magic