1
0
mirror of https://github.com/ubf/ubf.git synced 2026-04-16 17:55:48 +00:00

remove isit method

This commit is contained in:
Joseph Wayne Norton
2009-08-15 10:11:17 +09:00
parent 712c80f6ae
commit ed83dae1e3
2 changed files with 0 additions and 9 deletions

View File

@@ -39,7 +39,6 @@ contract's type.</td></tr>
<tr><td valign="top"><a href="#is_nonundefined-1">is_nonundefined/1*</a></td><td></td></tr>
<tr><td valign="top"><a href="#is_proplist-1">is_proplist/1*</a></td><td></td></tr>
<tr><td valign="top"><a href="#is_string-1">is_string/1*</a></td><td></td></tr>
<tr><td valign="top"><a href="#isit-3">isit/3*</a></td><td></td></tr>
<tr><td valign="top"><a href="#locate-3">locate/3*</a></td><td></td></tr>
</table>
@@ -180,11 +179,6 @@ contract's type.</p>
<p><tt>is_string(A) -&gt; any()</tt></p>
</div>
<h3 class="function"><a name="isit-3">isit/3 *</a></h3>
<div class="spec">
<p><tt>isit(HumanType, Term, Mod) -&gt; any()</tt></p>
</div>
<h3 class="function"><a name="locate-3">locate/3 *</a></h3>
<div class="spec">
<p><tt>locate(Type, Mod, X) -&gt; any()</tt></p>

View File

@@ -522,9 +522,6 @@ is_nonempty(_) -> true.
is_nonundefined(undefined) -> false;
is_nonundefined(_) -> true.
isit(HumanType, Term, Mod) ->
isType({prim, HumanType}, Term, Mod).
%% @spec (contract_type_name_atom(), term(), contract_module_name_atom()) ->
%% yup | error_hints_term_only_human_readable_sorry()
%% @doc Given a contract type name, a term to check against that contract