Being a hobbyist coder, I'm lacking some fundamental knowledge. For the last couple days I've been reading some stuff and the word "predicate" keeps reappearing. I'd very much appreciate an explanation on the subject.
Cheers!
|
Being a hobbyist coder, I'm lacking some fundamental knowledge. For the last couple days I've been reading some stuff and the word "predicate" keeps reappearing. I'd very much appreciate an explanation on the subject. Cheers! |
|||||
|
|
A logical expression which evaluates to TRUE or FALSE, normally to direct the execution path in code. |
|||||||||||
|
|
A statement which is either true or false. In programming it is typically a function which return a boolean for some input. Most commonly (I guess) used in the context of higher-order function. E.g. Example in javascript:
the function |
||||
|
A predicate isn't simply an expression that evaluates to true or false, there's more to it. The term "predicate" is used to refer to an expression that determines whether something is true or false. Or in other words, it makes an assertion and returns true or false based on that. For example (in C#):
I understand what I've put here is purely a difference in semantics, but that's what this question was about right? Semantics? |
|||||||||
|
|
A basic evaluation that results in a boolean(1) value. It often refers to a function or object that represents an evaluation of this type. (1): boolean used loosely, not necessarily referring to variables declared bool or boolean. |
|||||||||||
|
|
I don't know if I'm speaking in the correct context, but there is a For example, the following method, which is of type
I'm not sure how this translates into the more general case, but it's a start. For more info, click here. |
|||||||
|
|
In non programing terms; a question. Typically a general question with place holders (like it and them) that can be asked of many things.
|
|||||||||||
|
|
It is probably useful to consider the grammatical meaning of the concept to extrapolate the programming concept.
In logic terms:
from MathWorld |
|||
|
|
|
Also somewhat related, there are database-related predicates: |
|||
|
|
|
A function that returns a boolean. Predicates are used a lot in functional and OO programming to select subsets of values from data structures, especially lists and other collections. You'll find plenty of examples in the standard libraries for Haskell and Smalltalk. |
|||
|
|