Found 4 hits - Term: refutable, Database: *, Strategy: exact
- [1] : The Collaborative International Dictionary of English v.0.48
refutable \refut"able\ r?f?t"?b'l;277, a. cf. f.
r'efutable.
admitting of being refuted or disproved; capable of being
proved false or erroneous.
1913 webster
- [2] : WordNet (r) 2.0
refutable
adj : able to be refuted syn: questionable, confutable, confutative
see also:
questionable confutable confutative
- [3] : Moby Thesaurus II by Grady Ward, 1.0
31 moby thesaurus words for "refutable":
arguable, at issue, confutable, conjectural, contestable,
controversial, controvertible, debatable, defeasible, deniable,
disprovable, disputable, doubtable, doubtful, dubious, dubitable,
iffy, in dispute, in doubt, in dubio, in question, mistakable,
moot, open to doubt, open to question, problematic, questionable,
speculative, suppositional, suspect, suspicious
- [4] : The Free On-line Dictionary of Computing (27 SEP 03)
refutable
in lazy functional languages, a refutable pattern is one which
may fail to match. an expression being matched against a
refutable pattern is first evaluated to head normal form
which may fail to terminate and then the top-level
constructor of the result is compared with that of the
pattern. if they are the same then any arguments are matched
against the pattern's arguments otherwise the match fails.
an irrefutable pattern is one which always matches. an
attempt to evaluate any variable in the pattern forces the
pattern to be matched as though it were refutable which may
fail to match resulting in an error or fail to terminate.
patterns in haskell are normally refutable but may be made
irrefutable by prefixing them with a tilde ~. for example,
\ x,y -> 1 undefined ==> undefined
\ ~x,y -> 1 undefined ==> 1
patterns in miranda are refutable, except for tuples which are
irrefutable. thus
g x = 2
g undefined ==> undefined
f x,y = 1
f undefined ==> 1
pattern bindings in local definitions are irrefutable in both
languages:
h = 1 where x = undefined ==> 1
irrefutable patterns can be used to simulate unlifted products
because they effectively ignore the top-level constructor of
the expression being matched and consider only its components.
Results 1 - 1 of 1 found about refutable: Refutable
>> R Words
Refutable, definition of term: Refutable
refutable_pag1.html
Last accessed:2008/10/12 20:37:35 [Total processing time: 1 seconds] |