adrien changed the topic of #ocaml to: Discussions about the OCaml programming language | http://www.ocaml.org | OCaml MOOC http://1149.fr/ocaml-mooc | OCaml 4.02.3 announced http://ocaml.org/releases/4.02.html | Try OCaml in your browser: http://try.ocamlpro.com | Public channel logs at http://irclog.whitequark.org/ocaml
jimt_ has joined #ocaml
jgjl has joined #ocaml
jgjl has quit [Remote host closed the connection]
Korhoset has joined #ocaml
hay207_ has quit [Ping timeout: 246 seconds]
hay207__ has joined #ocaml
Korhonen has quit [Read error: Connection reset by peer]
Korhonen has joined #ocaml
Korhoset has quit [Ping timeout: 245 seconds]
Guest38 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Anarchos has quit [Quit: Vision[0.9.7-H-20140108]: i've been blurred!]
madroach has quit [Ping timeout: 246 seconds]
madroach has joined #ocaml
NingaLeaf has joined #ocaml
Korhonen has quit [Read error: Connection reset by peer]
Korhonen has joined #ocaml
kakadu has quit [Remote host closed the connection]
NingaLeaf has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ryanartecona has joined #ocaml
Korhoset has joined #ocaml
Korhonen has quit [Read error: Connection reset by peer]
Korhonen has joined #ocaml
Korhoset has quit [Ping timeout: 245 seconds]
Korhonen has quit [Remote host closed the connection]
Korhonen has joined #ocaml
Korhonen has quit [Remote host closed the connection]
psy has quit [Ping timeout: 255 seconds]
mcc has quit [Quit: Connection closed for inactivity]
psy has joined #ocaml
pyon has quit [Quit: Loops are hard, let's GOTO shopping!]
Algebr has quit [Remote host closed the connection]
FreeBirdLjj has joined #ocaml
teknozulu has quit [Ping timeout: 256 seconds]
NingaLeaf has joined #ocaml
teknozulu has joined #ocaml
tmtwd has joined #ocaml
Korhonen has joined #ocaml
sgnb` has joined #ocaml
sgnb has quit [Ping timeout: 272 seconds]
govg has quit [Quit: leaving]
govg has joined #ocaml
ryanartecona has quit [Quit: ryanartecona]
nullcatxxx_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Denommus has joined #ocaml
NingaLeaf has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
NingaLeaf has joined #ocaml
NingaLeaf has quit [Max SendQ exceeded]
JacobEdelman1 is now known as JacobEdelman
Korhonen has quit [Read error: Connection reset by peer]
Korhonen has joined #ocaml
Korhonen has quit [Remote host closed the connection]
tmtwd has quit [Ping timeout: 246 seconds]
Korhonen has joined #ocaml
b4284 has joined #ocaml
<b4284> hello, i've got a question
<b4284> List.map (pred % pred) [1; 2; 3];; (* OK *)
<b4284> List.map ~f:(pred % pred) [1; 2; 3];; (* failed *)
<b4284> i don't understand why the labelled version doesn't work, looking at mli right now
<Maelan> what’s the error?
johnelse has quit [Ping timeout: 276 seconds]
<b4284> their function prototypes look exactly the same
<b4284> Maelan: "Error: The function applied to this argument has type 'a list -> 'b list" "This argument cannot be applied with label ~f"
<b4284> val map : ('a -> 'b) -> 'a list -> 'b list val map : f:('a -> 'b) -> 'a list -> 'b list
<b4284> the former is original, the latter is labelled
pierpa has quit [Ping timeout: 240 seconds]
<Maelan> how comes you have two different function with the same name (‘List.map’)?
psy has quit [Ping timeout: 240 seconds]
<Maelan> functions*
<b4284> Maelan: you're right, there should be only one, isn't there
micro___1 is now known as micro_
psy has joined #ocaml
<b4284> now this would be correct: ListLabels.map ~f:(pred % pred) [1; 2; 3];;
<b4284> Maelan: thanks a lot
johnelse has joined #ocaml
johnelse is now known as Guest76596
Korhonen has quit [Read error: Connection reset by peer]
Korhonen has joined #ocaml
Korhonen has quit [Read error: Connection reset by peer]
<b4284> does the keyword `val' only show up in modules ?
<b4284> and if i'm using a `let' in toplevel, it shows a message starting with `val' if i'm defining a function
<b4284> because i'm defining it in the `Toplevel' module, if any ?
sz0 has quit [Ping timeout: 264 seconds]
struk|desk|away is now known as struk|desk
<teknozulu> So I just came across Core's Univ_map, which I believe will prove useful (I essentially want a heterogeneous map). Does anyone here have experience with managing the keys for the map? If I want to act as if the Univ_map works with string keys, I have to map each string to a Univ_map.Key, but Univ_map.Key is parametric so now again (at a glance) I seem to require another heterogeneous map, going full circle.
struk|desk has quit [Quit: Konversation terminated!]
b4284 is now known as b3284
mac10688 has quit [Ping timeout: 250 seconds]
struk|desk has joined #ocaml
pabs3 has left #ocaml ["Don't rest until the streets are paved in poems."]
badon has joined #ocaml
badon has quit [Excess Flood]
badon has joined #ocaml
Denommus has quit [Quit: going to sleep]
darkf has joined #ocaml
nullcatxxx_ has joined #ocaml
jimt_ has quit [Quit: leaving]
jimt_ has joined #ocaml
jimt_ is now known as jimt
ggole has joined #ocaml
badon has quit [Quit: Leaving]
ggole_ has joined #ocaml
ggole has quit [Ping timeout: 265 seconds]
ggole__ has joined #ocaml
nullcatxxx_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ggole_ has quit [Ping timeout: 272 seconds]
sz0 has joined #ocaml
psy has quit [Ping timeout: 264 seconds]
badon has joined #ocaml
ggole__ has quit [Ping timeout: 260 seconds]
ggole__ has joined #ocaml
<Drup> you are not really supposed to store them all together
<b3284> what does the `counter: 0' do in utop prompt ?
<Drup> teknozulu: I see you struggling with this heterogeneous container since a few day, can you explain the whole problem ?
<teknozulu> Yeah. So I'm taking a stab at building something (rudimentary) that can do "execution topologies" similar to what Apache Storm does, e.g. you can tell it workers A and B are pumping out data, which C processes (all three are on different machines)
<teknozulu> And I'm building this on top of Jane Street's Rpc_parallel which I'm using for message passing
<teknozulu> now here you can see the One_way module, https://github.com/janestreet/async_rpc_kernel/blob/master/src/rpc.ml
<teknozulu> Ideally when everything is "done", the user of my library will provide a list of worker descriptors, which is a record type and one of its fields is Rpc.One_way.t (parametric type)
<teknozulu> If they provide a 'msg Rpc.One_way.t for building a descriptor, along with it they provide a function 'msg -> 'output
<teknozulu> (At this point I think I can say I'm not insane for thinking I need a heterogenous container to do any reasonable automation)
<Drup> I see
<Drup> no, you don't really want an heterogenous container for that
<Drup> If I understand what you want right, you will want chaining, right ?
<Drup> like, you have some thing producing 'a, you have something consuming 'a and producing 'b, and you chain them
<Drup> is that correct ?
<teknozulu> yeah that's the jist of it
<Drup> Is your network static ?
<teknozulu> right now I haven't planned any functionality for removing/adding nodes at runtime, however I would like to have the flexibility where all the user provides in terms of the network is a list of machines, rather than a fixed graph which I currently have code to calculate based on dependencies that the user provides with each worker
<Drup> ah, no, that's not what I meant
<Drup> can the network changed based on computations inside then network itself ?
<Drup> the*
<Drup> like, can a producer return a list of producers that will be used in the next consumer
<teknozulu> Nope, the communication (graph, if you will) between each node is added on startup and will stay the same
<Drup> ok
<Drup> So there is a very usual abstraction for this kind of pattern, which is called applicative functors and that should help you to make the whole thing typesafe
<Drup> let's say you have a type 'a node, for a node that proposes a value of type 'a
<Drup> a producer of 'a is an 'a node
<Drup> a consumer of 'a and producer of 'b is a ('a -> 'b) node
<Drup> and you have an application operator, that combines the two, to make a 'b node
<teknozulu> ooh that looks good
<teknozulu> At the beginning I had some hazy monad-ish vision of how this might work, not far off conceptually
<Drup> formally, it means your type node looks like that:
<Drup> type _ node = | One : 'a One.t -> 'a node | Rpc : ('a,'b,my_error) Pipe_rpc.t -> ('a -> 'b) node | App : 'a node * ('a -> 'b) node -> 'b node
<Drup> I advise you to look up applicative functors, they are well documented (especially in the haskell community)
<teknozulu> Yeah I'll take a good look, this seems a lot more promising (and probably agreeably less hacky than anything GADTs or universal types might be able to do to remedy the situation)
<teknozulu> thanks
<Drup> well, it uses GADTs
<Drup> (there is an existential hidden in there, for the 'a in the App constructor)
<teknozulu> Sorry, when I said GADTs I was referring to what I tried with hiding the type (permanently)
<teknozulu> oh
<teknozulu> yep
<Drup> but it's less terrible :p
<Drup> Also, it means than your graph is fully described by the thing of type node, so you just to have to walk the type. What you can't do here is destruct an application after the fact and return the sub-elements
<Drup> (rule of thumb: if you need full blown heterogenous containers, take a good look at your problem, and try to find another way)
<Drup> (most often, you will find one)
<teknozulu> I'll keep in mind. Sounds reasonable when you look at the big picture, considering casting your <everything> to a void* in cpp or a plain Object in Java would be considered dubious
nullcatxxx_ has joined #ocaml
ggole__ is now known as ggole
Simn has joined #ocaml
teknozulu has quit [Ping timeout: 264 seconds]
zpe has quit [Ping timeout: 250 seconds]
ryanartecona has joined #ocaml
ggole has quit [Ping timeout: 276 seconds]
ggole has joined #ocaml
ely-se has joined #ocaml
larhat1 has joined #ocaml
larhat1 has quit [Client Quit]
JacobEdelman has quit [Quit: Connection closed for inactivity]
struk|desk is now known as struk|desk|away
ggole_ has joined #ocaml
ggole has quit [Ping timeout: 265 seconds]
b3284 has quit [Quit: Page closed]
_gt has joined #ocaml
tmtwd has joined #ocaml
jrslepak has quit [Quit: This computer has gone to sleep]
ryanartecona has quit [Quit: ryanartecona]
ggole__ has joined #ocaml
ggole_ has quit [Ping timeout: 256 seconds]
ggole_ has joined #ocaml
ggole__ has quit [Ping timeout: 264 seconds]
kakadu has joined #ocaml
nullcatxxx_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ely-se has quit [Quit: leaving]
ely-se has joined #ocaml
ely-se has quit [Client Quit]
avsm has joined #ocaml
tmtwd has quit [Remote host closed the connection]
avsm has quit [Quit: Leaving.]
lostman has quit [Quit: Connection closed for inactivity]
sbrouf has joined #ocaml
<sbrouf> val s : bytes = "['Node', ['Initial_place']]"
<sbrouf> let ss = Bytes.to_string s;;
<sbrouf> val ss : bytes = "['Node', ['Initial_place']]"
<sbrouf> anyone has a clue ?
<haesbaert> what's wrong with that ?
<sbrouf> ss is of type bytes
<haesbaert> Bytes.t is the same as String.t, but String.t is immutable in newer ocaml
<sbrouf> oh ok
<kakadu> http://paste.in.ua/1165/#26 Folks, why the exclamation mark is here? Should it me there?
<sbrouf> ty haesbaert
<haesbaert> yw :D
<rks`> Ident.print is called by the function printings path in printtyped.ml (fmt_path_aux)
rand_ has joined #ocaml
cody` has quit [Quit: Connection closed for inactivity]
<kakadu> okay, so it is intentional
<kakadu> Is the last error explainable so easy?
<rks`> kakadu: #require "compiler-libs.common";;
<kakadu> thanks!
<companion_cube> hey, I can utop -safe-string
<companion_cube> cool
Haudegen has quit [Ping timeout: 260 seconds]
jeffmo has quit [Quit: jeffmo]
ollehar has joined #ocaml
ollehar has quit [Client Quit]
govg has quit [Ping timeout: 272 seconds]
sz0 has quit [Quit: Bye.]
Haudegen has joined #ocaml
DanielRichman has quit [Ping timeout: 240 seconds]
_whitelogger has joined #ocaml
_whitelogger_ has joined #ocaml
BitPuffin|osx has quit [Ping timeout: 246 seconds]
DanielRichman has joined #ocaml
Haudegen has quit [Ping timeout: 265 seconds]
orbitz has quit [Ping timeout: 240 seconds]
_whitelogger_ has quit [Read error: Connection reset by peer]
_whitelogger has joined #ocaml
_gt has quit [Quit: leaving]
mac10688 has joined #ocaml
mac10688 has quit [Ping timeout: 260 seconds]
Haudegen has joined #ocaml
orbitz has quit [Read error: Connection reset by peer]
ahf has quit [Ping timeout: 240 seconds]
Guest86624 has quit [Ping timeout: 245 seconds]
DanielRichman has quit [Ping timeout: 245 seconds]
DanielRichman has joined #ocaml
micro___2 has joined #ocaml
AlexRussia has quit [Quit: WeeChat 1.4-dev]
jlouis has quit [Ping timeout: 276 seconds]
jlouis has joined #ocaml
ahf has joined #ocaml
orbitz has joined #ocaml
AlexRussia has joined #ocaml
AlexRussia has quit [Client Quit]
AlexRussia has joined #ocaml
orbitz has quit [Read error: Connection reset by peer]
orbitz_ has joined #ocaml
_whitelogger has joined #ocaml
agumonkey has joined #ocaml
jlouis has quit [Ping timeout: 240 seconds]
jlouis has joined #ocaml
sz0 has joined #ocaml
apache2_ has joined #ocaml
apache2 has quit [Ping timeout: 240 seconds]
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
orbitz has joined #ocaml
jlouis has joined #ocaml
apache2_ has quit [Read error: Connection reset by peer]
apache2 has joined #ocaml
nicooo has joined #ocaml
DanielRichman has joined #ocaml
micro_ has joined #ocaml
MercurialAlchemi has joined #ocaml
micro___2 has quit [Ping timeout: 276 seconds]
DanielRichman has quit [Ping timeout: 276 seconds]
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
nicoo has quit [Ping timeout: 260 seconds]
micro____ has joined #ocaml
orbitz has quit [Ping timeout: 256 seconds]
jlouis has quit [Ping timeout: 245 seconds]
Guest18846 has quit [Ping timeout: 255 seconds]
apache2 has quit [Ping timeout: 255 seconds]
ahf has quit [Ping timeout: 250 seconds]
DanielRichman has quit [Ping timeout: 256 seconds]
_whitelogger has quit [Excess Flood]
_whitelogger_ has joined #ocaml
demonimin has quit [Ping timeout: 260 seconds]
_whitelogger_ has quit [Excess Flood]
_whitelogger has joined #ocaml
DanielRichman has joined #ocaml
jlouis has joined #ocaml
pierpa has joined #ocaml
pierpa has joined #ocaml
DanielRichman has quit [Ping timeout: 240 seconds]
orbitz has quit [Ping timeout: 240 seconds]
jlouis has quit [Ping timeout: 245 seconds]
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
jlouis has joined #ocaml
_whitelogger has joined #ocaml
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
ely-se has quit [Quit: leaving]
m___ has joined #ocaml
apache2 has joined #ocaml
apache2 has quit [Read error: Connection reset by peer]
rand_ has quit [Ping timeout: 265 seconds]
DanielRichman has joined #ocaml
psy_ has joined #ocaml
psy_ has quit [Max SendQ exceeded]
psy_ has joined #ocaml
jlouis has quit [Ping timeout: 240 seconds]
apache2 has quit [Ping timeout: 240 seconds]
DanielRichman has quit [Ping timeout: 265 seconds]
micro____ has quit [Ping timeout: 276 seconds]
DanielRichman has joined #ocaml
micro___ has joined #ocaml
apache2 has joined #ocaml
jlouis has joined #ocaml
AlexRussia has quit [Quit: WeeChat 1.4-dev]
AlexRussia has joined #ocaml
apache2 has joined #ocaml
apache2 has quit [Ping timeout: 240 seconds]
jlouis has quit [Ping timeout: 245 seconds]
micro___ has quit [Ping timeout: 276 seconds]
jlouis has joined #ocaml
micro___1 has joined #ocaml
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
FreeBirdLjj has quit [Remote host closed the connection]
jlouis has joined #ocaml
struk|desk|away is now known as struk|desk
Haudegen has quit [Ping timeout: 246 seconds]
apache2 has quit [Ping timeout: 240 seconds]
DanielRichman has quit [Ping timeout: 272 seconds]
jlouis has quit [Ping timeout: 250 seconds]
micro___1 has quit [Ping timeout: 245 seconds]
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
NingaLeaf has joined #ocaml
_whitelogger has joined #ocaml
jrslepak has joined #ocaml
hay207__ has quit [Remote host closed the connection]
hay207__ has joined #ocaml
jlouis has joined #ocaml
apache2_ has joined #ocaml
apache2 has quit [Read error: Connection reset by peer]
rand_ has joined #ocaml
_whitelogger has joined #ocaml
micro__ has joined #ocaml
micro__ is now known as Guest45581
DanielRichman has joined #ocaml
JacobEdelman has joined #ocaml
jeffmo has quit [Quit: jeffmo]
orbitz has joined #ocaml
_whitelogger has joined #ocaml
rand_ has quit [Ping timeout: 246 seconds]
orbitz has joined #ocaml
DanielRichman has joined #ocaml
hay207__ has quit [Remote host closed the connection]
hay207__ has joined #ocaml
dexterph has joined #ocaml
apache2 has quit [Ping timeout: 245 seconds]
DanielRichman has quit [Ping timeout: 240 seconds]
micro____ has quit [Ping timeout: 260 seconds]
jlouis has quit [Ping timeout: 264 seconds]
_whitelogger has quit [Ping timeout: 240 seconds]
_whitelogger has joined #ocaml
rand__ has quit [Remote host closed the connection]
orbitz has joined #ocaml
DanielRichman has joined #ocaml
cody` has joined #ocaml
al-maisan has joined #ocaml
struk|desk is now known as struk|desk|away
_whitelogger has joined #ocaml
apache2_ has joined #ocaml
DanielRichman has quit [Ping timeout: 245 seconds]
apache2 has quit [Ping timeout: 240 seconds]
Guest78318 has quit [Ping timeout: 246 seconds]
_whitelogger has joined #ocaml
al-maisan has joined #ocaml
orbitz has joined #ocaml
apache2_ has quit [Ping timeout: 272 seconds]
Guest38 has joined #ocaml
johnf has quit [Remote host closed the connection]
m___ has quit [Ping timeout: 252 seconds]
orbitz has quit [Ping timeout: 260 seconds]
apache2 has quit [Ping timeout: 245 seconds]
micro____ has quit [Ping timeout: 264 seconds]
al-maisan has quit [Ping timeout: 240 seconds]
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
apache2 has joined #ocaml
_whitelogger has quit [Ping timeout: 250 seconds]
_whitelogger has joined #ocaml
jlouis has joined #ocaml
orbitz has joined #ocaml
Haudegen has quit [Ping timeout: 245 seconds]
apache2_ has joined #ocaml
micro____ has joined #ocaml
DanielRichman has joined #ocaml
DanielRichman has quit [Ping timeout: 245 seconds]
orbitz has quit [Ping timeout: 245 seconds]
jlouis has quit [Ping timeout: 240 seconds]
apache2 has quit [Ping timeout: 265 seconds]
orbitz has joined #ocaml
jlouis has joined #ocaml
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
mort___ has joined #ocaml
lobo has quit [Quit: leaving]
hay207__ has joined #ocaml
hay207__ has quit [Remote host closed the connection]
al-maisan has quit [Ping timeout: 264 seconds]
al-maisan has joined #ocaml
_whitelogger has quit [Ping timeout: 240 seconds]
_whitelogger has joined #ocaml
apache2 has joined #ocaml
Anarchos has joined #ocaml
NingaLeaf has quit [Quit: Textual IRC Client: www.textualapp.com]
_whitelogger has joined #ocaml
MercurialAlchemi has quit [Ping timeout: 256 seconds]
BitPuffin|osx has joined #ocaml
al-maisan has quit [Ping timeout: 255 seconds]
al-maisan has joined #ocaml
apache2 has joined #ocaml
DanielRichman has joined #ocaml
micro____ has quit [Ping timeout: 245 seconds]
DanielRichman has quit [Ping timeout: 240 seconds]
apache2_ has quit [Ping timeout: 260 seconds]
orbitz has quit [Ping timeout: 246 seconds]
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
jlouis has joined #ocaml
orbitz has joined #ocaml
Haudegen has joined #ocaml
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
lobo has joined #ocaml
al-maisan has quit [Ping timeout: 272 seconds]
apache2_ has joined #ocaml
orbitz has quit [Ping timeout: 260 seconds]
DanielRichman has quit [Ping timeout: 260 seconds]
apache2 has quit [Ping timeout: 240 seconds]
_whitelogger has joined #ocaml
orbitz has joined #ocaml
al-maisan has quit [Ping timeout: 260 seconds]
al-maisan has joined #ocaml
ygrek has joined #ocaml
hay207__ has joined #ocaml
hay207__ has quit [Remote host closed the connection]
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
kdas_ has joined #ocaml
hay207 has joined #ocaml
hay207__ has quit [Ping timeout: 245 seconds]
kushal has quit [Ping timeout: 245 seconds]
<gasche> kakadu: I just saw your report of compilation with -with-debug-runtime breaking on your machine
_whitelogger has quit [Excess Flood]
_whitelogger has joined #ocaml
_whitelogger has joined #ocaml
blub has joined #ocaml
_whitelogger has quit [Ping timeout: 240 seconds]
_whitelogger has joined #ocaml
Anarchos has quit [Quit: Vision[0.9.7-H-20140108]: i've been blurred!]
<kakadu> I found a virtualbox, btw. And the error seems to be the same. ARCH_INTNAT_PRINTF_FORMAT is defined to be "l" (found out with #pragame message in the right header)
<kakadu> gasche: ^^
<kakadu> We define typedef long intnat there
<kakadu> which doesn't mean that (intnat*) should be printed with %Ld
<kakadu> Maybe we can erase these l letter?
mort___ has quit [Ping timeout: 260 seconds]
dsheets has quit [Ping timeout: 260 seconds]
ygrek has quit [Ping timeout: 246 seconds]
NingaLeaf has joined #ocaml
ncthom91 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nullcatxxx_ has joined #ocaml
ggole_ has quit []
hay207 has quit [Ping timeout: 240 seconds]
ygrek has joined #ocaml
hay207 has joined #ocaml
ygrek has quit [Ping timeout: 260 seconds]
philtor has joined #ocaml
<edwin> kakadu: whats the error?
_whitelogger has joined #ocaml
<mrvn> 2 choices: 1) #include <inttypes.h> and PRIdPTR, 2) cast to long long int
<mrvn> Anyone here that can help me add a preprocessor to oasis/myocamlbuild that generate ml and c files?
<mrvn> The preprocessor would have to be compiled from ml files first and then used to create a number of files.
_whitelogger has joined #ocaml
_whitelogger has quit [Ping timeout: 240 seconds]
_whitelogger_ has joined #ocaml
ryanartecona has joined #ocaml
_whitelogger has joined #ocaml
ncthom91 has joined #ocaml
Guest76596 is now known as johnelse
hay207_ has quit [Ping timeout: 246 seconds]
hay207_ has joined #ocaml
ncthom91 has quit [Ping timeout: 265 seconds]
ncthom91 has joined #ocaml
ncthom91 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
struk|desk|away is now known as struk|desk
hay207_ has quit [Ping timeout: 250 seconds]
hay207__ has joined #ocaml
Accidus has joined #ocaml
tyrokroketa has joined #ocaml
BitPuffin|osx has joined #ocaml
struk|desk is now known as struk|desk|away
<please_help> why print a pointer with %[l]d instead of %p?
ncthom91 has joined #ocaml
ncthom91 has quit [Client Quit]
mcc has joined #ocaml
mac10688 has joined #ocaml
MercurialAlchemi has joined #ocaml
hay207__ has quit [Read error: Connection reset by peer]
hay207__ has joined #ocaml
Guest14236 has quit [Ping timeout: 264 seconds]
dsheets has quit [Ping timeout: 260 seconds]
wolfcore has joined #ocaml
wolfcore is now known as Guest68822
<edwin> its a difference between pointers
nullcatxxx_ has quit [Ping timeout: 250 seconds]
nullcatxxx_ has joined #ocaml
struk|desk|away is now known as struk|desk
abeaumont_ has joined #ocaml
ygrek has quit [Ping timeout: 240 seconds]
Simn has quit [Quit: Leaving]
mcmillhj has quit [Quit: Lost terminal]
MercurialAlchemi has quit [Ping timeout: 264 seconds]
<mrvn> edwin: so are you using PRIdPTR now or casting to long long int?
<mrvn> edwin: should be 0xFFFFFFFF81784201
<mrvn> ups, enick
Accidus has quit [Remote host closed the connection]
ryanartecona has quit [Quit: ryanartecona]