flux__ changed the topic of #ocaml to: OCaml 3.09.2 available! Archive of Caml Weekly News: http://sardes.inrialpes.fr/~aschmitt/cwn/ | A free book: http://cristal.inria.fr/~remy/cours/appsem/ | Mailing List: http://caml.inria.fr/bin/wilma/caml-list/ | Cookbook: http://pleac.sourceforge.net/
sieni_ has quit [Read error: 110 (Connection timed out)]
shawn has joined #ocaml
hikozaemon has joined #ocaml
CosmicRay has quit ["Client exiting"]
ski has joined #ocaml
khaladan has quit [Read error: 104 (Connection reset by peer)]
ski has quit [Read error: 110 (Connection timed out)]
chessguy has joined #ocaml
ski has joined #ocaml
sieni_ has joined #ocaml
chessguy has quit [" HydraIRC -> http://www.hydrairc.com <-"]
Purice has joined #ocaml
WhatTheDeuce has left #ocaml []
Purice has quit ["Leaving"]
jcreigh has joined #ocaml
jcreigh has quit [Read error: 110 (Connection timed out)]
Smerdyakov has quit ["Leaving"]
ramki has joined #ocaml
fluxx has joined #ocaml
ppsmimou has quit [kornbluth.freenode.net irc.freenode.net]
qwr has quit [kornbluth.freenode.net irc.freenode.net]
Hadaka has quit [kornbluth.freenode.net irc.freenode.net]
flux__ has quit [Read error: 104 (Connection reset by peer)]
ramkrsna has quit [Connection timed out]
qwr has joined #ocaml
ppsmimou has joined #ocaml
Hadaka has joined #ocaml
love-pingoo has joined #ocaml
vin100 has joined #ocaml
Revision17 has joined #ocaml
chessguy has joined #ocaml
_jol_ has joined #ocaml
ramki has quit [Remote closed the connection]
love-pingoo has quit ["Connection reset by by pear"]
chessguy has quit [" HydraIRC -> http://www.hydrairc.com <-"]
pango is now known as pangoafk
SirRobin has joined #ocaml
Snark has joined #ocaml
Boojum has joined #ocaml
Boojum has quit [Client Quit]
love-pingoo has joined #ocaml
hikozaemon has quit ["Leaving..."]
revision17_ has joined #ocaml
_jol_ has quit ["leaving"]
Revision17 has quit [Read error: 110 (Connection timed out)]
SirRobin has left #ocaml []
dark_light has quit [Read error: 104 (Connection reset by peer)]
SirRobin has joined #ocaml
SirRobin has quit ["Download Gaim: http://gaim.sourceforge.net/"]
mikeX has joined #ocaml
haelix has quit [Remote closed the connection]
pangoafk is now known as pango
ramkrsna has joined #ocaml
smimou has joined #ocaml
pango is now known as pangoafk
pangoafk is now known as pango
love-pingoo has quit ["Leaving"]
christos has joined #ocaml
SirRobin has joined #ocaml
Smerdyakov has joined #ocaml
love-pingoo has joined #ocaml
SirRobin has left #ocaml []
pango is now known as pangoafk
pangoafk is now known as pango
cp_ has left #ocaml []
Bigb[a]ng is now known as Bigbang
love-pingoo has quit ["Connection reset by by pear"]
_fab has joined #ocaml
christos has quit ["Leaving"]
finelemo1 has joined #ocaml
finelemon has quit [Read error: 110 (Connection timed out)]
descender has joined #ocaml
kral_ has joined #ocaml
kral_ is now known as kral
Voodoo_john has joined #ocaml
Voodoo_john has left #ocaml []
Snark has quit ["Leaving"]
mikeX has quit [Read error: 110 (Connection timed out)]
slipstream has joined #ocaml
mikeX has joined #ocaml
slipstream-- has quit [Connection timed out]
mikeX has quit [Remote closed the connection]
mikeX has joined #ocaml
khaladan has joined #ocaml
kral has quit ["Live fast, die young."]
cyyoung has joined #ocaml
Bigbang is now known as Bigb[a]ng
Purice has joined #ocaml
WhatTheDeuce has joined #ocaml
smimou has quit ["bli"]
WhatTheDeuce has left #ocaml []
zedrdave has joined #ocaml
<zedrdave> hello
Purice has quit [Remote closed the connection]
CosmicRay has joined #ocaml
* zedrdave has a question about arrays
<mikeX> zedrdave should just ask his question :)
<zedrdave> I'm a bit offput by the fact there is no easy way I can see to create an array with separate physical values...
<zedrdave> e.g.
<zedrdave> say I want an array of arrays...
<zedrdave> with each sub_array returned by a function
<zedrdave> now if I call Array.make 100 [||] and then iterate through the array...
<zedrdave> all I get is an array that contains 100 times my last call...
<zedrdave> this due to the fact all elements are physically the same when make is called..
<zedrdave> how am I supposed to work around that? :/
<mikeX> I'm not sure I understand
<zedrdave> hmn, neither am I :)
<zedrdave> but basically, I don't see an easy way to create a nested array...
<zedrdave> or more exactly: to initialize it...
<zedrdave> calling Array.create_matrix is nice, except I can't seem to initialize each element, without having them all be modified (which I understand is caused by them all being the same physical element)
<zedrdave> or is there a way to initialize an array without using make?
<mikeX> hmm, you could build lists, and then turn them into arrays
<zedrdave> yea...
<zedrdave> but would that be the "recommended" way?
<mikeX> don't know :)
<zedrdave> k...
<zedrdave> lists isn't too much of an option, since I'm really manipulating lotsa levels of lists...
<zedrdave> err... arrays (not lists)