Miranda conformTo
From Erights
(Difference between revisions)
(add javadoc) |
Kevin Reid (Talk | contribs) (stub page written for some tests.) |
||
Line 1: | Line 1: | ||
- | + | <code>__conformTo/1</code> is a Miranda message. | |
{{instance msgdoc|__conformTo|1|<var>guard</var> :[[Guard]]|[[any]]}} | {{instance msgdoc|__conformTo|1|<var>guard</var> :[[Guard]]|[[any]]}} | ||
Line 28: | Line 28: | ||
# value: <obj> | # value: <obj> | ||
- | + | {{stub}} | |
- | + | ||
- | {{ | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
[[Category:Miranda messages]] | [[Category:Miranda messages]] | ||
+ | [[Category:ELib specification]] |
Revision as of 16:55, 21 August 2009
__conformTo/1
is a Miranda message.
Contents |
__conformTo/1
Clients
A guard which does not immediately accept the recipient may call __conformTo
(the guard) on it, and check and return the result thereof instead.
Implementations
Implementations of __conformTo/1
should return the recipient if they have no better answer.
Miranda behavior
Returns the recipient.
? def obj {} > obj.__conformTo(any) # value: <obj> ? obj.__conformTo(List) # value: <obj> ? obj.__conformTo(def bobj {}) # value: <obj> ? obj.__conformTo(null) # value: <obj>
- This page is a stub; it should be expanded with more information. If doing so, check the original E web site and the mailing list archives for content which could be moved into this page.