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.
0
votes
2answers
19 views
Can I pass operators into an NSPredicate via the format string?
I'm trying to create the following predicate
[NSPredicate predicateWithFormat:@"name != %@ AND date %@ %@", varName, operator, varDate]
Where varName and varDate are NSString and NSDate objects ...
0
votes
1answer
24 views
How do I manage an NSString as BOOL in iOS Core Data?
I have a webservice that returns a 0 string for a field I need called driveThru in order to determine whether a location has a drive thru service or not.
I take that "0" and store it as a string in ...
0
votes
2answers
53 views
std::remove_if using other class method
I want to use std::remove_if with a predicate that is a member function of a differenct calss.
That is
class B;
class A {
bool invalidB( const B& b ) const; // use members of class A to ...
0
votes
1answer
44 views
Converting propositional logic argument to Prolog
How do I translate the following argument into Prolog? It seems like it doesn't need predicates. (Note: I use & for a conjunction and | for a disjunction.)
G -> (H & J)
(H | J) -> S
...
0
votes
1answer
33 views
strange behavior of sort in racket
I have the following defined:
(struct type (parent dirty) #:mutable #:transparent)
(define types (make-hash))
(define (add-key predicate parent)
(begin
(hash-ref! types ...
0
votes
0answers
30 views
Interrogating Core Data one-to-one relationship
hopefully, this is a simple question, but I cant find the answer in core data docs. I have an app setting up employees as members of functions (departments) using the relationship ...
1
vote
4answers
73 views
How do I add to a set based on a specific predicate in Java?
I have a set in Java containing people:
Set<Person> uniquePeople = new HashSet<Person>();
I also have a list of a ton of people (of whom some possess the same name, eg. there is more ...
0
votes
2answers
36 views
c# getting a configurable equatable method
I've got a simple factory that's built in C# that instantiates and configures validators that are built in ASP.net and JavaScript. I want a way to test if I'm accidently trying to set a validator ...
0
votes
0answers
32 views
FilterContentForSearchText in UIsearchDisplayController working with collections
Good morning everyone. I have got a problem with filtering data using UISearchDisplayController. Instead of having a simple NSArray and easy using a predicate, I have a collectione and I would like to ...
0
votes
0answers
19 views
Using the value of a string variable in a Linq Expression
I am trying to create something like the below but I need to generate the OR statements from an IEnumerable
examinerSpec.Predicate =
...
1
vote
2answers
50 views
C++ STL Containers. Parametrize a comparer for each different instance
I have a set of n objects representing coordinates in a map, and I want for each one of them to mantain a priority_queue with the k closest to their position.
Problem is priority_queue receives a ...
0
votes
0answers
12 views
otter divisible clause
I need to create a predicate DIVISIBLE(x,y) which we will read as "x is divisible by y".
What clauses would I need to make this predicate work?
I have clauses like
-Divisible(x,4) | ...
1
vote
1answer
69 views
iOS Simple Predicate 'contains' Not Working
I have a model:
place<--->>category
When performing the following query:
NSFetchRequest *req = [NSFetchRequest fetchRequestWithEntityName:@"Category"];
if(![searchText isEqualToString:@""] ...
2
votes
1answer
162 views
Core Data wants my predicate argument to be an NSNumber and an NSDate
I have a model with Events that have multiple UpcomingDates, each of which has a property date of type (NS)Date. I'm building a fetch request to only retrieve events that have upcoming dates between ...
1
vote
1answer
68 views
Checking that all items in a collection match a predicate in Scala
What's the most idiomatic way to test whether all items of a collection match a predicate?
Any item?
0
votes
2answers
125 views
Core Data Predicate Date Comparison
Im trying to fetch all the objects in an entity matching a user selectedDate (it's an NSDate).
The Core Data code is fine but my predicate keeps returning 0 results, the dates are the same in the ...
1
vote
1answer
20 views
How to search Core Data Child Objects
I am having difficulty figuring out if and or how I can search child objects as well as their parents using NSPredicate(or some other method). For instance, I have a Wine Object that has properties ...
2
votes
1answer
47 views
Lisp deleting data from list
'((A 0) (K 1) (E 1) (H 2) (I 2) (G 2) '3 (NIL 3) (J 3) (J 3) '4 (NIL 4) '4 (NIL 4)))
How to delete '3 and '4 from list?
2
votes
1answer
194 views
LINQ expressions. Variable 'p' of type referenced from scope, but it is not defined
I'm building a LINQ query dynamically with this code.
It seems to work, but when i have more than one searchString in my search, (so when multiple expressions are added, i get the following error:
...
0
votes
1answer
62 views
Can not create specification that will check class of field
Entity Order contains field:
@ManyToOne(optional = false)
private AbstractRequester requester;
I wanna get data by type this field.
I created specification like in documentation, but on
page = ...
0
votes
1answer
81 views
Using the Prolog select predicate?
I'm trying to make a program where seat(Guests, Seating) holds if the people in the list Guests can be re-arranged into the list Seating so that each one is compatible to the ones on either side.
I ...
1
vote
1answer
43 views
Expression create a predicate with StartWith on Int32 field
The expression builder below works fine. No problem if the subMember is a string.
Imagine now I receive a subMember named Code, this Code is an Int32. On this,
I'd like make a StartWith but I can't ...
0
votes
3answers
95 views
Haskell: List Boundary
I have a list of doubles(myList), which I want to add to a new List (someList), but once the new list reaches a set size i.e. 25, I want to stop adding to it. I have tried implementing this function ...
1
vote
3answers
60 views
Predicate for reuseable datetime filter
I have a number of objects that contain a datetime. I have found that I am reusing the lambda statement:
Where(x => EntityFunctions.TruncateTime(x.Date.Value) >= ...
-1
votes
4answers
141 views
std::unique with predicate comparing std::string not removing duplicate
Unless I am missing something or missunderstand the mechanism (very likely) Shouldn't the "1" duplicate not exist in this vector ?
chunks.erase( std::unique ( chunks.begin(), chunks.end(),
...
2
votes
2answers
96 views
what Javascript library can evaluate MongoDB-like query predicates against an object?
is there a javascript library that will allow me to express object predicates in a DSL similar to MongoDB's query language? for the sake of clarity in a large program, i'd like to be able to say:
...
0
votes
1answer
96 views
linq predicate in c#
i have two tables(for Ex:TableEmployee,TableSal) with no relationship,
and i have to write predicate using these two tables,
TableEmployees:This table contains Name, DepartmentId columns
TableSal: ...
0
votes
1answer
61 views
Applying a filter to NSFetchedResultsController
The following works to display the list of "Pins" on a table and I can change _category using an actionsheet successfully.
I want to only show results that match the given category (i.e. Travel), ...
1
vote
4answers
118 views
how to pass a predicate to algorithm
I'm having a problem passing predicate using lamda, I'm trying to move element that matches the predicate to the beginning of a second container, but it didn't seem to work, so what's wrong please?
...
1
vote
1answer
79 views
Search Field Predicate Format [duplicate]
I am having questions on using a NSSearchField. I binded it to my Dictionary Controller and now I would like to search from it. Here is the project
MyPlist(top)
My Header File(Bottom)
My ...
1
vote
4answers
71 views
Where do I define Predicates and Function Objects?
My question is of a purely organisational nature and hence I realize potential answers may be subjective in nature. After years of working with C#, I've finally returned to C++ and am struggling with ...
0
votes
0answers
77 views
Core Data query through many "many-to-many relationships
New to Core Data, I'm trying hard to understand how to access and query through multiples many-to-many relationships. Here's the model:
http://dl.free.fr/dRqgjMgR4
I would like to get the number of ...
1
vote
1answer
51 views
Compiler error with is_permutation and predicate for struct
I don't understand the compiler error I'm getting in the last line of:
#include <iostream>
#include <algorithm>
struct X{
int number;
};
bool same_number_X(const int & a, const X ...
0
votes
2answers
68 views
Can predicate delegate simply be called as a boolean delegate?
Delegates, yes I am trying to understand the use of this concept, what problems it helps to solve in C#. So far, I really like the Decoupling facility it provides code with. Then I came across ...
5
votes
1answer
161 views
Define a predicate inside a predicate in prolog
I'm trying to define a predicate inline to pass it to another predicate in Prolog.
% Test if a "product" of graphs G1 and G2 has a "mini-loop" starting from Q
test_property_combined(G1,G2,Q):-
...
0
votes
0answers
171 views
ZF2 use AND predicate for update with where clause
I try to create a query for updating a couple records in one time. I guess I need to work
with a predicate AND but have no clue how this works. There are not a lot of examples of predicates I saw.
I ...
0
votes
1answer
142 views
Dynamic Predicate for Selecting Different Columns of an Entity
I have a requirement to showing all or less properties of an entity in the grid based on the page mode user select. For example I have three page modes
Minimal (will show 8 properties of an entity in ...
1
vote
1answer
103 views
Can you give me a good example of using a predicate that does not involve a collection, list, enumerator or IEnumerable?
The title pretty much asks what I want -- an example of using predicates that don't involve iterating over a collection, using IEnumerable, or anything like that.
I don't care what language you use, ...
0
votes
1answer
46 views
JPQL - Predicate and criteriaAPI
I'd like to write a Predicate which is calculated based on 2 columns.
for example - I have a daysBetween (int) and lastSent (date).
I'd like to know if there's a possibility to perform the following ...
1
vote
3answers
208 views
Scheme fold map and filter functions
I am learning how to use higher-order functions in scheme. I get the idea of using higher-order functions, however I am having trouble using them. For this learning exercise, I would prefer to only ...
1
vote
1answer
343 views
LINQ: Dynamic predicate builder issue
I'm trying to create a helper class to easily build dynamic LINQ queries. Code is heavily modified version of this excellent CodeProject article: ...
7
votes
4answers
149 views
Dynamically Modifying Where Condition in LINQ Query
The following Entity Framework query runs without error.
Predicate<Program> filterProgram;
if (programId.HasValue)
filterProgram = (p => p.Id == programId && !p.IsDeleted);
else
...
0
votes
1answer
31 views
Matching a rule in the middle of any number of other rules
I'm working on a data definition language that uses braces to identify hierarchy.
typeA idS
{
paramX = value
typeB idT
{
paramY = value
}
}
There are a large number ...
3
votes
2answers
129 views
Java: How to filter a big collection of objects with a big collection of predicates?
In Java, I have a big collection of objects (~ 10,000 objects), say Set<Person> cityInhabitants. I also have a big collection of predicates (~ 1,000 predicates) which shall be used to filter ...
3
votes
0answers
152 views
NullPointerException at org.hibernate.ejb.criteria.path.AbstractPathImpl.get
This works fine:
public Predicate toPredicate(Root<Campaign> root,
CriteriaQuery<?> query, CriteriaBuilder cb) {
return root.get("campState").get("statusId").in(campStatus);
}
...
1
vote
1answer
175 views
using std::find with a predicate
I want to use std::find function along with a predicate (not sure if I use the correct word). Here is the code
#include <iostream>
#include <vector>
#include <algorithm>
using ...
0
votes
0answers
42 views
How do I use Search Bar with compound predicates with NSMutableArray
I have an app with an NSMutableArray for a table view.
Im using this NSPredicate:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.name contains[c] %@",searchText];
to filter the ...
-1
votes
1answer
234 views
Predicate Logic and CNF [closed]
One given example, two questions, two ideas:
∃t ∀s learn(s, t, a) and not distracted(s) => passExam(s, a)
1) What means that in natural language?
There is a t(opic), when a s(tudent) learns ...
3
votes
1answer
143 views
PredicateBuilder returning zero records
I'm using PredicateBuilder to create a dynamic Where clause to query data from a DataTable. I have a Dictionary that contains my column names and values I need to search for. I'm simply iterating ...
0
votes
2answers
100 views
Predicate functor inheriting from unary_function, that isn't a function taking 1 argument
I have a functor class inheriting from unary_function:
template<class T>
class Matcher : public std::unary_function<T, bool>
{
private:
int m_match;
public:
Matcher(int ...

