Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For instance, suppose I want to make a type like this (using Dyn_array):

type some_type = SomeConstructor of <Dyn_array of integers>

I'm a little bit lost on how to do this though. Could someone give me an example so I can wrap my head around this?

share|improve this question

2 Answers

up vote 2 down vote accepted

What is the problem ? the syntax ?

Have you tried using an intermediate type ?

type my_dyn = Dyn_Array of int

type some_type = SomeConstructor of my_dyn
share|improve this answer
please note that i have batteries installed, but this is what i would do for a regular Stack, and it looks the same (based on the documentation though) – LB . Dec 1 '09 at 15:21
It was the syntax. I actually found an answer for this, but forgot to post the answer here! – Jason Baker Dec 1 '09 at 19:09

(I don't have batteries installed). DynArray.t is defined already. You just want to specify the type for its free variable and not define a new constructor (what, X of y would do, well, aside from that embedded syntax being illegal),

type some_type = SomeConstructor of integers DynArray.t

If you wanted to leave the type of DynArray free then,

type 'a some_type = SomeConstructor of 'a DynArray.t
share|improve this answer
+1: that's what i was looking for. – LB . Dec 1 '09 at 19:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.