Tagged Questions

A Predicate is a method which represents a set of criteria and decides for a given object if these criteria are fulfilled or not. In computer languages a Predicate is expressed as a function which takes a single object as input parameter and returns a boolean value.

learn more… | top users | synonyms

87
votes
5answers
33k views

Predicate Delegates in C#

Can you explain me; What is Predicate Delegate ? Where should we use predicates ? Any best practices about predicates ? Descriptive source code will be appreciated, Thanks for all replies !
26
votes
3answers
7k views

How to convert a String to its equivalent Expression Tree?

This is a simplified version of the original problem. I have a class called Person: public class Person { public string Name { get; set; } public int Age { get; set; } public int Weight ...
14
votes
3answers
4k views

How to convert an Expression<Func<T, bool>> to a Predicate<T>

I have a method that accepts an Expression<Func<T, bool>> as a parameter. I would like to use it as a predicate in the List.Find() method, but I can't seem to convert it to a Predicate ...
12
votes
5answers
7k views

Predicate in Java

I am going through the code which uses Predicate in Java. I have never used predicate. Can someone guide me to any tutorial or conceptual explanation of predicate and their implementation in java ? ...
10
votes
3answers
180 views

Python: find first element in a sequence that matches a predicate

Stupid question ahead: I want an idiomatic way to find the first element in a list that matches a predicate. The current code is quite ugly: [x for x in seq if predicate(x)][0] I've thought about ...
10
votes
3answers
459 views

What is Predicate Dispatch

I have seen much talk about predicate dispatch in Clojure lately and wonder if there is something to this thing. In other words, what is predicate dispatch and how does it differ from generic ...
9
votes
2answers
87 views

Pass std algos predicates by reference in C++

I am trying to remove elements from a std::list and keep some stats of deleted elements. In order to do so, I use the remove_if function from the list, and I have a predicate. I would like to use ...
9
votes
5answers
2k views

How can I implement the unification algorithm in a language like Java or C#?

I'm working through my AI textbook I got and I've come to the last homework problem for my section: "Implement the Unification Algorithm outlined on page 69 in any language of your choice." On page ...
8
votes
3answers
196 views

Predicates Common Lisp

Do you know where can I get the source of a predicate in Common Lisp? (The content of the predicate, if you prefer.) For example, source code of setq, string= etc. Thanks !
8
votes
1answer
393 views

Can you implement any pure LISP function using the ten primitives? (ie no type predicates)

This site makes the following claim: http://hyperpolyglot.wikidot.com/lisp#ten-primitives McCarthy introduced the ten primitives of lisp in 1960. All other pure lisp functions (i.e. all functions ...
8
votes
5answers
464 views

Scheme and Clojure don't have the atom type predicate - is this by design?

Common LISP and Emacs LISP have the atom type predicate. Scheme and Clojure don't have it. http://hyperpolyglot.wikidot.com/lisp Is there a design reason for this - or is it just not an essential ...
8
votes
3answers
233 views

What am I missing in this chain of predicates?

NOTE: Right before posting this question it occurred to me there's a better way of doing what I was trying to accomplish (and I feel pretty stupid about it): IEnumerable<string> checkedItems = ...
7
votes
2answers
632 views

Is there any way to negate a Predicate?

I want to do something like this: List<SomeClass> list1 = ... List<SomeClass> list2 = ... Predicate<SomeClass> condition = ... ... list2.RemoveAll (!condition); ... ...
7
votes
3answers
2k views

Is there a Java 1.5 equivalent to the Predicate<T> methods in .Net?

Specifically, I'm looking for similarly clean notation to the Collection<T>.TrueForAll / Exists, etc. It feels smelly to have to write a foreach loop to inspect the return of a method on each ...
7
votes
6answers
10k views

How do I form a good predicate delegate to Find() something in my List<T>?

After looking on MSDN, it's still unclear to me how I should form a proper predicate to use the Find() method in List using a member variable of T (where T is a class) For example: public class Car ...
6
votes
1answer
71 views

Why can't I construct std::set with an instantiation of a predicate, but I can assign a std::set constructed that way?

So I've got an array (0 - n), holding values that I want std::set to use for it's sorting. The array is unsigned int cost[n]. I'm using the following functor for this sorting: struct ProxySorter { ...
6
votes
2answers
221 views

How can I dynamically pass a condition and a method to a recursive method

I want to make a method like this, public dynamic Traverse(dynamic entity, conditions, method) { foreach (var propInfo in GetTraversableProperties(entity)) { if (condition) ...
6
votes
4answers
221 views

Correct Way to Define a Predicate Function in C++

I'm trying to write predicate function for use with STL algorithms. I see that they are two ways to define a predicate: (1) Use a simple function as below: bool isEven(unsigned int i) { ...
6
votes
1answer
173 views

MOQ - LINQ Predicates in Setup Method

In my method, I have my repository doing this: bool isConditionMet = MyRepository.Any(x => x.Condition == true); I am attempting to mock this using MOQ like so: MyMockedRepository.Setup(x => ...
6
votes
2answers
739 views

lisp filter out results from list not matching predicate

I am trying to learn lisp, using emacs dialect and I have a question. let us say list has some members, for which predicate evaluates to false. how do I create a new list without those members? ...
6
votes
3answers
2k views

Finding elements in a scala list and also know which predicate has been satisfied

I have the following problem in scala. I have to find the first element in al list which satisfies a predicate function with two conditions in OR. The problem is that I would like to get the element ...
6
votes
2answers
3k views

C#, Linq2SQL: Creating a predicate to find elements within a number of ranges

Lets say I have something called Stuff in my database, with a property called Id. From the user I get a sequence of selected Range objects (or rather I create them from their input) with the Ids they ...
6
votes
1answer
4k views

VB.NET Predicate Array Find

How would I convert the following to a VB.NET predicate using Array.Find? Private Function FindCulture(ByVal Code As String) As Globalization.CultureInfo ' Dim AllCultures As ...
5
votes
1answer
62 views

Linq - Creating Expression<T1> from Expression<T2>

I have a predicate Expression<Func<T1, bool>> I need to use it as a predicate Expression<Func<T2, bool>> using the T1 property of T2 I was trying to think about several ...
5
votes
7answers
4k views

C# List.Find method - how can I pass a value into the predicate?

I can't work out how to do a "find" on a List I have based on use of a value that I'll pass in at run time. If you see my below code, I want to be able to find the CustomClass in the List for which ...
5
votes
1answer
4k views

Core Data: Query objectIDs in a predicate?

I am fetching a set of objects from a Core Data persistent store using a fetch request and a predicate. My current predicate simply checks whether an attribute is >= a certain value. This all works ...
5
votes
3answers
4k views

Adding a parameter to a FindAll for a Generic List in C#

I have a list of objects that I want to filter by an integer parameter List<testObject> objectList = new List<testObject>(); // populate objectList with testObjects ...
5
votes
4answers
996 views

Chaining of ordering predicates (e.g. for std::sort)

You can pass a function pointer, function object (or boost lambda) to std::sort to define a strict weak ordering of the elements of the container you want sorted. However, sometimes (enough that I've ...
4
votes
2answers
139 views

Is there something for function composition in <functional>?

What I want to do is done pretty easily with C++0x lambdas. I just want to figure out how to do it with bind1st and bind2nd only. I need to find the first element i in the vector v, such that ...
4
votes
3answers
137 views

Single predicate to test for “self-evaluating” atoms in Clojure

At the home site of Clojure, there is the following statement: Strings, numbers, characters, true, false, nil and keywords evaluate to themselves. Is there a single combined predicate that ...
4
votes
1answer
95 views

Origin of the term “Predicate” to refer to a boolean function?

In Scheme, the term "predicate" is used as follows: A predicate is a procedure that always returns a boolean value (#t or #f). Why does scheme use "predicate" to refer to such a function? And if ...
4
votes
1answer
59 views

Why does Xpath expresson ending in [*] returns empty list when changing to [node()] returns elements

I have an xml file that has a sortbits element that has 32 bit elements as children. If I use the xpath expression /config/portmod/sortbits/bit[*] it returns an empty list. if I change it to ...
4
votes
4answers
135 views

Problem with `\+` in Prolog queries with variables

I'm reading "Seven languages in seven weeks" atm, and I'm stumped over some Prolog query that I don't understand the 'no' response to. The friends.pl file looks like this: likes(wallace, cheese). ...
4
votes
2answers
515 views

Convert func to predicate using reflection in C#

I'm basically trying to do this, but I don't know what T will be, so I'm building things up using Reflection and Expression trees. // Input (I don't know about "Book") Type itemType = typeof(Book); ...
4
votes
1answer
333 views

Method with Predicate as Parameter

This is a general question, but here is the specific case I'm looking for a solution to: I have a Dictionary<int, List<string>> I want to apply various predicates to. I want one method ...
4
votes
3answers
400 views

Predicate<int> match question

I do not understand how following code works. Specifically, I do not understand using of "return i<3". I would expect return i IF its < than 3. I always though that return just returns value. I ...
4
votes
5answers
180 views

How can I define a “Do-Nothing” sort?

I'm working on a system where I need to be able to sort a vector by a given predicate, which my classes shouldn't have control over. Basically, I pass them a derived class and they blindly sort on it. ...
4
votes
9answers
1k views

Using STL/Boost to find and modify matching elements in a vector

Let's say I have a vector declared like this: struct MYSTRUCT { float a; float b; }; std::vector<MYSTRUCT> v; Now, I want to find all elements of v that share the same a, and average their ...
3
votes
1answer
49 views

Searching within a folder structure in Core Data

I have a Core Data model consisting of folders and items. A folder may contain either subfolders or items. Each item has a "Folder" relationship. Each folder has a "Parent" relationship (which may be ...
3
votes
4answers
206 views

System.Predicate<T>: Is this really what it means, or is this what it is used for?

MSDN defines System.Predicate this way: Represents the method that defines a set of criteria and determines whether the specified object meets those criteria. Is this really what it means, or ...
3
votes
4answers
289 views

XPath/XSLT nested predicates: how to get the context of outer predicate?

It seems that this question was not discussed on stackoverflow before, save for Working With Nested XPath Predicates ... Refined where the solution not involving nested predicates was offered. So i ...
3
votes
1answer
360 views

Predicate Builder for Fetched Properties?

Does anyone know how to access the Predicate Builder for fetched properties in Xcode 4? The docs indicate that one needs to access it through the "The Browser View", but I thought this view went out ...
3
votes
3answers
238 views

Am I using the copy_if wrong?

I am using visual studio 2010 and I am trying to use std::copy_if, I want to copy all values that are satisfying a predicate. For example: struct comp { bool operator()(const int i) { return i == ...
3
votes
4answers
231 views

Java join collections using functor

2 collections are given with the same number of elements, say List<String>. What are elegant ways in JAVA to apply a functor on each 2 elements of collections with corresponding indexes? Say, ...
3
votes
2answers
125 views

Is there a way for std::map to “edit” values like a predicate for the key?

I am wondering if it is possible to create something like a predicate for a std::map for all of its values so I don't have to edit the values before I insert them into the map. What I would like is ...
3
votes
1answer
103 views

Most reliable way to clean List<T> depending on Predicate<T>

I have List<T> data and Predicate<T> condition. What way should I use to clear data depending on condition result? Option 1: var del = data.Where(i => condition); data.RemoveAll(i ...
3
votes
7answers
646 views

Declaring func<in T,Out Result> dynamically

Consider this: var propertyinfo = typeof(Customer).GetProperty(sortExpressionStr); Type orderType = propertyinfo.PropertyType; now i want to declare Func<int,orderType> i know its not ...
3
votes
3answers
2k views

IEnumerable<T>.Contains with predicate

I need just to clarify that given collection contains an element. I can do that via collection.Count(foo => foo.Bar == "Bar") > 0) but it will do the unnecessary job - iterate the whole ...
3
votes
2answers
345 views

How do I write a predicate that checks if a value exists in an infinite seq?

I had an idea for a higher-order function today that I'm not sure how to write. I have several sparse, lazy infinite sequences, and I want to create an abstraction that lets me check to see if a given ...
3
votes
2answers
344 views

ruby idiom: predicates and the conditional operator

I like judicious use of the ternary, conditional operator. To my mind it's quite succinct. However, in ruby, I find I'm often testing predicate methods, which already have their own question marks: ...

1 2 3 4 5 6