<div dir="ltr">Hi, I&#39;m making a binding to gtk to help me gain some familiarity  with the language but I don&#39;t know how to reflect type constraints within agda. How can I make &quot;instances&quot; of a type? <div>
<br></div><div>For example, &#39;actionConnectProxy :: (ActionClass self, WidgetClass proxy)<span style="white-space:pre"> </span>=&gt; sel<span style="white-space:pre">f </span>-&gt; proxy -&gt; IO ()&#39;</div><div><br>
</div><div>This is easily exported with</div><div><br></div><div><br></div><div><br></div><div>postulate</div><div>  actionConnectProxy : {A, B : Set} -&gt; A -&gt; B -&gt; IO Unit</div><div><br></div><div>{-# COMPILED actionConnectProxy Graphics.UI.Gtk.actionConnectProxy #-}</div>
<div><br></div><div><br></div><div><br></div><div>But how do I restrict A to ActionClass and B to WidgetClass? I could go </div><div><br></div><div><br></div><div>postulate WidgetClass : {A : Set} -&gt; A -&gt; A</div><div>
<br></div><div>{-# COMPILED_TYPE WidgetClass (WidgetClass a =&gt; a) #-}</div><div><br></div><div><br></div><div><br></div><div><div>But  I would like the data type to be somehow restricted to &quot;instances&quot; of the type. Any help would be appreciated.</div>
</div><div><br></div></div>